app->singleton(DateRangeService::class); $this->app->singleton(LoginResponse::class, LoginRedirectResponse::class); } /** * Bootstrap any application services. */ public function boot(): void { // Bind custom Import and Export models $this->app->bind(BaseImport::class, Import::class); $this->app->bind(BaseExport::class, Export::class); // Bind custom Notification model $this->app->bind(DatabaseNotification::class, Notification::class); Notifications::alignment(Alignment::Center); FilamentAsset::register([ Js::make('top-navigation', __DIR__ . '/../../resources/js/top-navigation.js'), Js::make('history-fix', __DIR__ . '/../../resources/js/history-fix.js'), Js::make('custom-print', __DIR__ . '/../../resources/js/custom-print.js'), ]); } }