Nova getting started added

This commit is contained in:
Benjamin Takats
2022-12-01 12:02:10 +01:00
parent 5ad6bc3f05
commit 4699805e60
33 changed files with 1090 additions and 16 deletions

View File

@@ -2,20 +2,24 @@
namespace App\Nova\Dashboards;
use Laravel\Nova\Cards\Help;
use Laravel\Nova\Dashboards\Main as Dashboard;
use Nova\Start\Start;
class Main extends Dashboard
{
public function name()
{
return 'Getting Started';
}
/**
* Get the cards for the dashboard.
*
* @return array
*/
public function cards()
{
return [
new Help,
new Start,
];
}
}