Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ ENV SSL_MODE="mixed"
RUN apt-get update && apt-get install -y \
cron \
gnupg \
php8.1-gd \
php8.1-pgsql \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*
Expand Down
13 changes: 12 additions & 1 deletion _ide_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/**
* A helper file for Laravel, to provide autocomplete information to your IDE
* Generated for Laravel 9.52.0.
* Generated for Laravel 9.52.4.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -20264,6 +20264,17 @@ public static function assertCanNotSeeTableRecords($records)
public static function assertCountTableRecords($count)
{
return \Livewire\Testing\TestableLivewire::assertCountTableRecords($count);
}
/**
*
*
* @see \Filament\Tables\Testing\TestsRecords::loadTable()
* @return static
* @static
*/
public static function loadTable()
{
return \Livewire\Testing\TestableLivewire::loadTable();
}

}
Expand Down
Loading