silent-auction/app/Filament/Resources/CarShowWinnerResource/Pages/ListCarShowWinners.php

20 lines
436 B
PHP
Raw Normal View History

2022-08-06 15:39:24 -04:00
<?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(),
];
}
}