20 lines
436 B
PHP
20 lines
436 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Filament\Resources\CarShowWinnerResource\Pages;
|
||
|
|
||
|
use App\Filament\Resources\CarShowWinnerResource;
|
||
|
use Filament\Pages\Actions;
|
||
|
use Filament\Resources\Pages\ListRecords;
|
||
|
|
||
|
class ListCarShowWinners extends ListRecords
|
||
|
{
|
||
|
protected static string $resource = CarShowWinnerResource::class;
|
||
|
|
||
|
protected function getActions(): array
|
||
|
{
|
||
|
return [
|
||
|
Actions\CreateAction::make(),
|
||
|
];
|
||
|
}
|
||
|
}
|