reworked all of the controllers to use . for views and / for redirects

This commit is contained in:
2019-04-27 20:56:01 -05:00
parent 5564b09c3b
commit d45e8f8606
7 changed files with 20 additions and 20 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);
}
}