- Created EditSerialValidation page for editing serial validation records with view, delete, force delete, and restore actions. - Created ListSerialValidations page for listing serial validation records with a create action. - Created ViewSerialValidation page for viewing serial validation records with an edit action.
20 lines
448 B
PHP
20 lines
448 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\SerialValidationResource\Pages;
|
|
|
|
use App\Filament\Resources\SerialValidationResource;
|
|
use Filament\Actions;
|
|
use Filament\Resources\Pages\ListRecords;
|
|
|
|
class ListSerialValidations extends ListRecords
|
|
{
|
|
protected static string $resource = SerialValidationResource::class;
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
Actions\CreateAction::make(),
|
|
];
|
|
}
|
|
}
|