%PDF- %PDF-
Direktori : /proc/self/root/home/forge/api-takeaseat.eco-n-tech.co.uk/app/Providers/ |
Current File : //proc/self/root/home/forge/api-takeaseat.eco-n-tech.co.uk/app/Providers/NovaServiceProvider.php |
<?php namespace App\Providers; use Illuminate\Support\Facades\Gate; use Laravel\Nova\Cards\Help; use App\Nova\Metrics\NewUsers; use App\Nova\Metrics\UsersPerRole; use App\Nova\Metrics\NewBookings; use App\Nova\Metrics\AverageBookingValue; use Laravel\Nova\Nova; use Laravel\Nova\NovaApplicationServiceProvider; class NovaServiceProvider extends NovaApplicationServiceProvider { /** * Bootstrap any application services. * * @return void */ public function boot() { parent::boot(); } /** * Register the Nova routes. * * @return void */ protected function routes() { Nova::routes() ->withAuthenticationRoutes() ->withPasswordResetRoutes() ->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 true; }); } /** * Get the cards that should be displayed on the default Nova dashboard. * * @return array */ protected function cards() { return [ new NewUsers, new UsersPerRole, new NewBookings, new AverageBookingValue ]; } /** * Get the extra dashboards that should be displayed on the Nova dashboard. * * @return array */ protected function dashboards() { return []; } /** * Get the tools that should be listed in the Nova sidebar. * * @return array */ public function tools() { return []; } /** * Register any application services. * * @return void */ public function register() { // } }