mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 18:44:46 +02:00
87 lines
3.1 KiB
PHP
87 lines
3.1 KiB
PHP
<?php
|
|
|
|
namespace App\Providers\Filament;
|
|
|
|
use App\Filament\Pages\Auth\Login;
|
|
use App\Filament\Pages\Auth\EditProfile;
|
|
use Filament\Facades\Filament;
|
|
use Filament\Http\Middleware\Authenticate;
|
|
use Filament\Http\Middleware\DisableBladeIconComponents;
|
|
use Filament\Http\Middleware\DispatchServingFilamentEvent;
|
|
use Filament\Navigation\MenuItem;
|
|
use Filament\Panel;
|
|
use Filament\PanelProvider;
|
|
use Filament\Support\Facades\FilamentView;
|
|
use Filament\View\PanelsRenderHook;
|
|
use Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse;
|
|
use Illuminate\Cookie\Middleware\EncryptCookies;
|
|
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken;
|
|
use Illuminate\Routing\Middleware\SubstituteBindings;
|
|
use Illuminate\Session\Middleware\AuthenticateSession;
|
|
use Illuminate\Session\Middleware\StartSession;
|
|
use Illuminate\Support\Facades\Blade;
|
|
use Illuminate\View\Middleware\ShareErrorsFromSession;
|
|
|
|
class AppPanelProvider extends PanelProvider
|
|
{
|
|
public function boot(): void
|
|
{
|
|
FilamentView::registerRenderHook(
|
|
PanelsRenderHook::HEAD_START,
|
|
fn (): string => Blade::render(<<<'HTML'
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
@livewireStyles
|
|
HTML),
|
|
);
|
|
|
|
FilamentView::registerRenderHook(
|
|
PanelsRenderHook::BODY_END,
|
|
fn (): string => Blade::render(<<<'HTML'
|
|
@livewireScripts
|
|
@vite(['resources/js/app.js'])
|
|
HTML),
|
|
);
|
|
}
|
|
|
|
public function panel(Panel $panel): Panel
|
|
{
|
|
return $panel
|
|
->id('app')
|
|
->spa()
|
|
->breadcrumbs(false)
|
|
->brandName(config('app.name', 'Pelican'))
|
|
->brandLogo(config('app.logo'))
|
|
->brandLogoHeight('2rem')
|
|
->favicon(config('app.favicon', '/pelican.ico'))
|
|
->topNavigation(config('panel.filament.top-navigation', true))
|
|
->maxContentWidth(config('panel.filament.display-width', 'screen-2xl'))
|
|
->navigation(false)
|
|
->profile(EditProfile::class, false)
|
|
->login(Login::class)
|
|
->userMenuItems([
|
|
MenuItem::make()
|
|
->label('Admin')
|
|
->url('/admin')
|
|
->icon('tabler-arrow-forward')
|
|
->sort(5)
|
|
->visible(fn (): bool => auth()->user()->canAccessPanel(Filament::getPanel('admin'))),
|
|
])
|
|
->discoverResources(in: app_path('Filament/App/Resources'), for: 'App\\Filament\\App\\Resources')
|
|
->databaseNotifications()
|
|
->middleware([
|
|
EncryptCookies::class,
|
|
AddQueuedCookiesToResponse::class,
|
|
StartSession::class,
|
|
AuthenticateSession::class,
|
|
ShareErrorsFromSession::class,
|
|
VerifyCsrfToken::class,
|
|
SubstituteBindings::class,
|
|
DisableBladeIconComponents::class,
|
|
DispatchServingFilamentEvent::class,
|
|
])
|
|
->authMiddleware([
|
|
Authenticate::class,
|
|
]);
|
|
}
|
|
}
|