*/ protected $policies = [ // ]; /** * Register any authentication / authorization services. */ public function boot(): void { // Daftarkan provider kustom kita di sini Auth::provider('dummy', function ($app, array $config) { return new DummyUserProvider(); }); } }