view('vendor.nova.partials.footer')->render()); parent::boot(); } /** * Register the Nova routes. */ protected function routes(): void { Nova::routes() ->withAuthenticationRoutes() ->withPasswordResetRoutes() ->register(); } /** * Register the Nova gate. * * This gate determines who can access Nova in non-local environments. */ protected function gate(): void { Gate::define('viewNova', function ($user) { return in_array($user->email, [ // ]); }); } /** * Get the dashboards that should be listed in the Nova sidebar. */ protected function dashboards(): array { return [ new \App\Nova\Dashboards\Main, ]; } /** * Get the tools that should be listed in the Nova sidebar. */ public function tools(): array { return []; } /** * Register any application services. */ public function register(): void { // } }