replaced . with / for returning views and redirects

This commit is contained in:
2019-02-23 14:48:00 -06:00
parent 0bd41458ca
commit 172247cd3b
5 changed files with 14 additions and 14 deletions

View File

@@ -51,6 +51,6 @@ class DashboardController extends Controller
'roles' => $roles,
];
return view('dashboard.profile')->with('data', $data);
return view('dashboard/profile')->with('data', $data);
}
}