Added Authentication Scaffolding, Dashboard, and Sidenav

This commit is contained in:
2020-04-29 03:20:00 +01:00
parent 3bd773e2d3
commit 70c7429e36
146 changed files with 163497 additions and 238 deletions

View File

@@ -12,8 +12,18 @@ use Illuminate\Support\Facades\Route;
| contains the "web" middleware group. Now create something great!
|
*/
Auth::routes();
Route::get('/','HomeController@index');
Route::post('/form/contact', 'ContactController@create')
->name('sendSubmission');
Route::group(['middleware' => 'auth'], function(){
Route::get('/dashboard', 'DashboardController@index');
});
//Route::get('/dashboard/login', '');