mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 21:26:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			83 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Providers\Filament;
 | |
| 
 | |
| use App\Filament\Resources\UserResource\Pages\EditProfile;
 | |
| use App\Http\Middleware\LanguageMiddleware;
 | |
| use Filament\Http\Middleware\Authenticate;
 | |
| use Filament\Http\Middleware\DisableBladeIconComponents;
 | |
| use Filament\Http\Middleware\DispatchServingFilamentEvent;
 | |
| use Filament\Panel;
 | |
| use Filament\PanelProvider;
 | |
| use Filament\Support\Colors\Color;
 | |
| use Filament\Support\Facades\FilamentAsset;
 | |
| use Filament\Widgets;
 | |
| 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\View\Middleware\ShareErrorsFromSession;
 | |
| 
 | |
| class AdminPanelProvider extends PanelProvider
 | |
| {
 | |
|     public function boot()
 | |
|     {
 | |
|         FilamentAsset::registerCssVariables([
 | |
|             'sidebar-width' => '14rem !important',
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function panel(Panel $panel): Panel
 | |
|     {
 | |
|         return $panel
 | |
|             ->default()
 | |
|             ->id('admin')
 | |
|             ->path('admin')
 | |
|             ->topNavigation(config('panel.filament.top-navigation', true))
 | |
|             ->login()
 | |
|             ->homeUrl('/')
 | |
|             ->favicon(config('app.favicon', '/pelican.ico'))
 | |
|             ->brandName(config('app.name', 'Pelican'))
 | |
|             ->brandLogo(config('app.logo'))
 | |
|             ->brandLogoHeight('2rem')
 | |
|             ->profile(EditProfile::class, false)
 | |
|             ->colors([
 | |
|                 'danger' => Color::Red,
 | |
|                 'gray' => Color::Zinc,
 | |
|                 'info' => Color::Sky,
 | |
|                 'primary' => Color::Blue,
 | |
|                 'success' => Color::Green,
 | |
|                 'warning' => Color::Amber,
 | |
|                 'blurple' => Color::hex('#5865F2'),
 | |
|             ])
 | |
|             ->discoverResources(in: app_path('Filament/Resources'), for: 'App\\Filament\\Resources')
 | |
|             ->discoverPages(in: app_path('Filament/Pages'), for: 'App\\Filament\\Pages')
 | |
|             ->discoverClusters(in: app_path('Filament/Clusters'), for: 'App\\Filament\\Clusters')
 | |
|             ->pages([
 | |
|                 // Pages\Dashboard::class,
 | |
|             ])
 | |
|             ->discoverWidgets(in: app_path('Filament/Widgets'), for: 'App\\Filament\\Widgets')
 | |
|             ->widgets([
 | |
|                 Widgets\AccountWidget::class,
 | |
|                 Widgets\FilamentInfoWidget::class,
 | |
|             ])
 | |
|             ->middleware([
 | |
|                 EncryptCookies::class,
 | |
|                 AddQueuedCookiesToResponse::class,
 | |
|                 StartSession::class,
 | |
|                 AuthenticateSession::class,
 | |
|                 ShareErrorsFromSession::class,
 | |
|                 VerifyCsrfToken::class,
 | |
|                 SubstituteBindings::class,
 | |
|                 DisableBladeIconComponents::class,
 | |
|                 DispatchServingFilamentEvent::class,
 | |
|                 LanguageMiddleware::class,
 | |
|             ])
 | |
|             ->authMiddleware([
 | |
|                 Authenticate::class,
 | |
|             ]);
 | |
|     }
 | |
| }
 | 
