mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-12 19:30:51 +08:00
19 lines
362 B
PHP
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;
|
|
};
|
|
}
|
|
}
|