MyDashboard
Access Adminetic dashboard with ease
has index method which returns view i.e dashboard
public function view()
{
$view = view()->exists('admin.dashboard.index') ? 'admin.dashboard.index' : 'adminetic::admin.dashboard.index';
return view($view,['name' => 'adminetic']);
}
Last updated
Was this helpful?