Files
qds/app/Filament/Resources/CheckPointTimeResource/Pages/ListCheckPointTimes.php
dhanabalan 3f0d529640
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 1m4s
Initial commit for new repo
2025-12-16 17:05:04 +05:30

20 lines
440 B
PHP

<?php
namespace App\Filament\Resources\CheckPointTimeResource\Pages;
use App\Filament\Resources\CheckPointTimeResource;
use Filament\Actions;
use Filament\Resources\Pages\ListRecords;
class ListCheckPointTimes extends ListRecords
{
protected static string $resource = CheckPointTimeResource::class;
protected function getHeaderActions(): array
{
return [
Actions\CreateAction::make(),
];
}
}