1
0
forked from poc/pds

modifiednavigation names for live readings page

This commit is contained in:
dhanabalan
2025-07-31 17:18:44 +05:30
parent 5c1f77796f
commit ec2fd4d3ca
5 changed files with 30 additions and 0 deletions

View File

@@ -9,4 +9,9 @@ use Filament\Resources\Pages\CreateRecord;
class CreateTempLiveReading extends CreateRecord
{
protected static string $resource = TempLiveReadingResource::class;
public function getHeading(): string
{
return 'Create Live Readings';
}
}

View File

@@ -19,4 +19,9 @@ class EditTempLiveReading extends EditRecord
Actions\RestoreAction::make(),
];
}
public function getHeading(): string
{
return 'Create Live Readings';
}
}

View File

@@ -16,4 +16,9 @@ class ListTempLiveReadings extends ListRecords
Actions\CreateAction::make(),
];
}
public function getHeading(): string
{
return 'Live Readings';
}
}

View File

@@ -16,4 +16,9 @@ class ViewTempLiveReading extends ViewRecord
Actions\EditAction::make(),
];
}
public function getHeading(): string
{
return 'Live Readings';
}
}