16 lines
476 B
PHP
16 lines
476 B
PHP
<x-filament-panels::page>
|
|
@auth
|
|
@if (auth()->user()->level === 9)
|
|
@livewire('notifications')
|
|
<x-filament-panels::form wire:submit="save">
|
|
{{ $this->form }}
|
|
<x-filament-panels::form.actions
|
|
:actions="$this->getFormActions()"
|
|
/>
|
|
</x-filament-panels::form>
|
|
@else
|
|
@php abort(403); @endphp
|
|
@endif
|
|
@endauth
|
|
</x-filament-panels::page>
|