run through pint

This commit is contained in:
2023-11-28 23:37:02 +05:00
parent 5b32575929
commit 56a7255e4a
18 changed files with 573 additions and 638 deletions

View File

@@ -7,15 +7,24 @@ use Laravel\Nova\Dashboards\Main as Dashboard;
class Main extends Dashboard
{
/**
* Get the displayable name of the dashboard.
*
* @return string
*/
public function name(): string
{
return __('Dashboard');
}
/**
* Get the cards for the dashboard.
*
* @return array
*/
public function cards()
public function cards(): array
{
return [
new Help,
];
}
}