Introduce filament

This commit is contained in:
xiaomlove
2022-06-27 01:39:01 +08:00
parent aae45835ee
commit 1aca20070d
92 changed files with 3535 additions and 83 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
namespace App\Filament;
use Filament\Resources\Pages\ListRecords;
use Illuminate\Database\Eloquent\Model;
class PageList extends ListRecords
{
protected ?string $maxContentWidth = 'full';
protected function getTableRecordUrlUsing(): ?\Closure
{
return function (Model $record): ?string {
return null;
};
}
}