mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
22 lines
323 B
PHP
22 lines
323 B
PHP
<?php
|
|
|
|
namespace App\Nova\Dashboards;
|
|
|
|
use Laravel\Nova\Cards\Help;
|
|
use Laravel\Nova\Dashboards\Main as Dashboard;
|
|
|
|
class Main extends Dashboard
|
|
{
|
|
/**
|
|
* Get the cards for the dashboard.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function cards()
|
|
{
|
|
return [
|
|
new Help,
|
|
];
|
|
}
|
|
}
|