mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
21 lines
462 B
PHP
21 lines
462 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\User\HitAndRunResource\Pages;
|
|
|
|
use App\Filament\PageList;
|
|
use App\Filament\Resources\User\HitAndRunResource;
|
|
use Filament\Pages\Actions;
|
|
use Filament\Resources\Pages\ListRecords;
|
|
|
|
class ListHitAndRuns extends PageList
|
|
{
|
|
protected static string $resource = HitAndRunResource::class;
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
// Actions\CreateAction::make(),
|
|
];
|
|
}
|
|
}
|