26 lines
397 B
PHP
26 lines
397 B
PHP
<?php
|
|
|
|
namespace App\Nova\Dashboards;
|
|
|
|
use Laravel\Nova\Dashboards\Main as Dashboard;
|
|
|
|
class Main extends Dashboard
|
|
{
|
|
/**
|
|
* Get the displayable name of the dashboard.
|
|
*/
|
|
public function name(): string
|
|
{
|
|
return __('Dashboard');
|
|
}
|
|
|
|
/**
|
|
* Get the cards for the dashboard.
|
|
*/
|
|
public function cards(): array
|
|
{
|
|
return [
|
|
];
|
|
}
|
|
}
|