<?php
namespace {{ namespace }};
use Laravel\Nova\Dashboard;
class {{ class }} extends Dashboard
{
/**
* Get the cards for the dashboard.
*
* @return array
*/
public function cards()
{
return [
//
];
}
/**
* Get the URI key for the dashboard.
*
* @return string
*/
public function uriKey()
{
return 'uri-key';
}
}