app->bind('ssh', fn (): SSH => new SSH); $this->app->bind('notifier', fn (): Notifier => new Notifier); $this->app->bind('ftp', fn (): FTP => new FTP); $this->app->bind('plugins', fn (): Plugins => new Plugins); Sanctum::usePersonalAccessTokenModel(PersonalAccessToken::class); Fortify::twoFactorChallengeView(function () { return view('app'); }); if (config('app.force_https')) { URL::forceHttps(); } } }