22 lines
503 B
PHP
22 lines
503 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\PhotoboothSettings\Pages;
|
|
|
|
use App\Filament\Resources\PhotoboothSettings\PhotoboothSettingResource;
|
|
use Filament\Resources\Pages\EditRecord;
|
|
|
|
class EditPhotoboothSetting extends EditRecord
|
|
{
|
|
protected static string $resource = PhotoboothSettingResource::class;
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
protected function getRedirectUrl(): string
|
|
{
|
|
return $this->getResource()::getUrl('index');
|
|
}
|
|
}
|