modifiednavigation names for live readings page
This commit is contained in:
@@ -113,6 +113,16 @@ class TempLiveReadingResource extends Resource
|
|||||||
//
|
//
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
public static function getNavigationLabel(): string
|
||||||
|
{
|
||||||
|
return 'Live Readings';
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getHeading(): string
|
||||||
|
{
|
||||||
|
return 'Live Readings';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public static function getPages(): array
|
public static function getPages(): array
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -9,4 +9,9 @@ use Filament\Resources\Pages\CreateRecord;
|
|||||||
class CreateTempLiveReading extends CreateRecord
|
class CreateTempLiveReading extends CreateRecord
|
||||||
{
|
{
|
||||||
protected static string $resource = TempLiveReadingResource::class;
|
protected static string $resource = TempLiveReadingResource::class;
|
||||||
|
|
||||||
|
public function getHeading(): string
|
||||||
|
{
|
||||||
|
return 'Create Live Readings';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,4 +19,9 @@ class EditTempLiveReading extends EditRecord
|
|||||||
Actions\RestoreAction::make(),
|
Actions\RestoreAction::make(),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getHeading(): string
|
||||||
|
{
|
||||||
|
return 'Create Live Readings';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,4 +16,9 @@ class ListTempLiveReadings extends ListRecords
|
|||||||
Actions\CreateAction::make(),
|
Actions\CreateAction::make(),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getHeading(): string
|
||||||
|
{
|
||||||
|
return 'Live Readings';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,4 +16,9 @@ class ViewTempLiveReading extends ViewRecord
|
|||||||
Actions\EditAction::make(),
|
Actions\EditAction::make(),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getHeading(): string
|
||||||
|
{
|
||||||
|
return 'Live Readings';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user