Added before test reading resource files and exporter file
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 25s

This commit is contained in:
dhanabalan
2026-08-21 09:24:46 +05:30
parent a13fb8330c
commit e1bf0a2066
6 changed files with 891 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?php
namespace App\Filament\Resources\BeforeTestReadingResource\Pages;
use App\Filament\Resources\BeforeTestReadingResource;
use Filament\Actions;
use Filament\Resources\Pages\EditRecord;
class EditBeforeTestReading extends EditRecord
{
protected static string $resource = BeforeTestReadingResource::class;
protected function getHeaderActions(): array
{
return [
Actions\ViewAction::make(),
Actions\DeleteAction::make(),
Actions\ForceDeleteAction::make(),
Actions\RestoreAction::make(),
];
}
}