make branches work

This commit is contained in:
2023-11-23 15:50:28 +05:00
parent 7372435e56
commit 143e2af1de
12 changed files with 909 additions and 2 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,
];
}
}