Added temp live reading resource files

This commit is contained in:
dhanabalan
2025-07-18 18:05:27 +05:30
parent 27b8058ba8
commit a5036b7d6f
5 changed files with 206 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Filament\Resources\TempLiveReadingResource\Pages;
use App\Filament\Resources\TempLiveReadingResource;
use Filament\Actions;
use Filament\Resources\Pages\ViewRecord;
class ViewTempLiveReading extends ViewRecord
{
protected static string $resource = TempLiveReadingResource::class;
protected function getHeaderActions(): array
{
return [
Actions\EditAction::make(),
];
}
}