Files
pds/app/Filament/Resources/WindedSerialValidationErrorResource/Pages/ViewWindedSerialValidationError.php
dhanabalan c627195daa
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 26s
Added laser winded serial validation error resource files and exporter file
2026-08-23 18:58:27 +05:30

20 lines
487 B
PHP

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