Added Website Setting Page
This commit is contained in:
15
resources/views/filament/pages/settings.blade.php
Normal file
15
resources/views/filament/pages/settings.blade.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user