WIP: Enabled themes and login with adminlte

This commit is contained in:
Deon George
2017-12-03 12:20:26 +11:00
parent b1a5807eb3
commit 02087feef2
193 changed files with 69547 additions and 39901 deletions

View File

@@ -11,6 +11,13 @@
|
*/
Route::get('/', 'WelcomeController@show');
Route::group(['middleware'=>['setTheme:metronic-fe']], function() {
Route::get('/', 'WelcomeController@show');
Route::get('/home', 'HomeController@show');
Route::get('/home', 'HomeController@show');
});
Route::group(['middleware'=>['setTheme:adminlte-be']], function() {
Route::get('/login', 'Auth\LoginController@showLoginForm');
Route::post('/login', 'Auth\LoginController@login');
});