mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
93 lines
2.0 KiB
PHP
93 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\Facades\Gate;
|
|
use Itsmejoshua\Novaspatiepermissions\Novaspatiepermissions;
|
|
use Laravel\Nova\Nova;
|
|
use Laravel\Nova\NovaApplicationServiceProvider;
|
|
|
|
class NovaServiceProvider extends NovaApplicationServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap any application services.
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
parent::boot();
|
|
|
|
Nova::withBreadcrumbs();
|
|
|
|
// disable theme switcher
|
|
Nova::withoutThemeSwitcher();
|
|
|
|
// login with user id 1, if we are in local environment
|
|
// if (app()->environment('local')) {
|
|
// auth()->loginUsingId(1);
|
|
// }
|
|
|
|
Nova::footer(function ($request) {
|
|
// return MIT license and date
|
|
return sprintf("%s %s - %s", date('Y'), config('app.name'), __('MIT License'));
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Get the tools that should be listed in the Nova sidebar.
|
|
* @return array
|
|
*/
|
|
public function tools()
|
|
{
|
|
return [
|
|
Novaspatiepermissions::make(),
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Register the Nova routes.
|
|
* @return void
|
|
*/
|
|
protected function routes()
|
|
{
|
|
Nova::routes()
|
|
->withAuthenticationRoutes()
|
|
->withPasswordResetRoutes()
|
|
->register();
|
|
}
|
|
|
|
/**
|
|
* Register any application services.
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Register the Nova gate.
|
|
* This gate determines who can access Nova in non-local environments.
|
|
* @return void
|
|
*/
|
|
protected function gate()
|
|
{
|
|
Gate::define('viewNova', function ($user) {
|
|
return in_array($user->email, [
|
|
//
|
|
]);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Get the dashboards that should be listed in the Nova sidebar.
|
|
* @return array
|
|
*/
|
|
protected function dashboards()
|
|
{
|
|
return [
|
|
new \App\Nova\Dashboards\Main,
|
|
];
|
|
}
|
|
}
|