Files
online.tbbank.gov.tm-larave…/app/Nova/Dashboards/Main.php
2023-11-30 16:06:37 +05:00

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 [
];
}
}