Files
nexusphp/app/Filament/PageList.php
2022-06-27 01:39:01 +08:00

19 lines
362 B
PHP

<?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;
};
}
}