We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 525045e commit 48ba4baCopy full SHA for 48ba4ba
app/Providers/AppServiceProvider.php
@@ -4,6 +4,7 @@
4
5
use App\Enums\Environment;
6
use App\Models\User;
7
+use Filament\Tables\Table;
8
use Illuminate\Http\Client\RequestException;
9
use Illuminate\Http\Resources\Json\JsonResource;
10
use Illuminate\Support\Facades\URL;
@@ -30,6 +31,10 @@ public function boot(): void
30
31
32
Vite::useAggressivePrefetching();
33
34
+ Table::configureUsing(function (Table $table): void {
35
+ $table->defaultPaginationPageOption(50);
36
+ });
37
+
38
Health::checks([
39
UsedDiskSpaceCheck::new(),
40
DatabaseCheck::new(),
0 commit comments