install Laravel Nova

This commit is contained in:
Benjamin Takats
2022-11-29 20:50:18 +01:00
parent cbf4186ce5
commit cd122e3c1d
13 changed files with 861 additions and 11 deletions

View File

@@ -0,0 +1,21 @@
<?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,
];
}
}