Files
fotospiel-app/app/Filament/Resources/PhotoboothSettings/Pages/EditPhotoboothSetting.php
Codex Agent 412ecbe691
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled
Implement superadmin audit log for mutations
2026-01-02 11:57:49 +01:00

22 lines
521 B
PHP

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