83 lines
3.0 KiB
PHP
83 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace App\Providers\Filament;
|
|
|
|
use Filament\Pages;
|
|
use Filament\Panel;
|
|
use Filament\Widgets;
|
|
use Filament\PanelProvider;
|
|
use Filament\Support\Colors\Color;
|
|
use Orion\FilamentGreeter\GreeterPlugin;
|
|
use Filament\Http\Middleware\Authenticate;
|
|
use Jeffgreco13\FilamentBreezy\BreezyCore;
|
|
use Illuminate\Session\Middleware\StartSession;
|
|
use Illuminate\Cookie\Middleware\EncryptCookies;
|
|
use Filament\Http\Middleware\AuthenticateSession;
|
|
use BezhanSalleh\FilamentShield\FilamentShieldPlugin;
|
|
use Illuminate\Routing\Middleware\SubstituteBindings;
|
|
use Illuminate\View\Middleware\ShareErrorsFromSession;
|
|
use Filament\Http\Middleware\DisableBladeIconComponents;
|
|
use Filament\Http\Middleware\DispatchServingFilamentEvent;
|
|
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken;
|
|
use Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse;
|
|
|
|
class MPanelProvider extends PanelProvider
|
|
{
|
|
public function panel(Panel $panel): Panel
|
|
{
|
|
return $panel
|
|
->default()
|
|
->id('m')
|
|
->path('m')
|
|
->favicon(asset('img/favicon.png'))
|
|
->brandName('MOPSS')
|
|
->brandLogo(asset('img/brandLight.svg'))
|
|
->darkModeBrandLogo(asset('img/brandDark.svg'))
|
|
->brandLogoHeight('2.5rem')
|
|
->login()
|
|
->passwordReset()
|
|
->colors([
|
|
'primary' => Color::Blue,
|
|
])
|
|
->discoverResources(in: app_path('Filament/Resources'), for: 'App\\Filament\\Resources')
|
|
->discoverPages(in: app_path('Filament/Pages'), for: 'App\\Filament\\Pages')
|
|
->pages([
|
|
Pages\Dashboard::class,
|
|
])
|
|
->discoverWidgets(in: app_path('Filament/Widgets'), for: 'App\\Filament\\Widgets')
|
|
->widgets([
|
|
])
|
|
->middleware([
|
|
EncryptCookies::class,
|
|
AddQueuedCookiesToResponse::class,
|
|
StartSession::class,
|
|
AuthenticateSession::class,
|
|
ShareErrorsFromSession::class,
|
|
VerifyCsrfToken::class,
|
|
SubstituteBindings::class,
|
|
DisableBladeIconComponents::class,
|
|
DispatchServingFilamentEvent::class,
|
|
])
|
|
->authMiddleware([
|
|
Authenticate::class,
|
|
])
|
|
->plugins([
|
|
GreeterPlugin::make()
|
|
->message('Halo,')
|
|
->title('Pantau perkembangan anak dengan mudah')
|
|
->avatar(size: 'lg', enabled: true)
|
|
->columnSpan('full'),
|
|
FilamentShieldPlugin::make(),
|
|
BreezyCore::make()
|
|
->myProfile(
|
|
shouldRegisterUserMenu: true,
|
|
userMenuLabel: 'Profil',
|
|
shouldRegisterNavigation: false,
|
|
navigationGroup: 'Pengaturan',
|
|
hasAvatars: true,
|
|
slug: 'profil'
|
|
)
|
|
]);
|
|
}
|
|
}
|