Skip to content

Commit fe7b92c

Browse files
committed
update home page blade file
1 parent 47bdf4c commit fe7b92c

File tree

2 files changed

+1
-137
lines changed

2 files changed

+1
-137
lines changed

resources/views/welcome.blade.php

Lines changed: 0 additions & 132 deletions
This file was deleted.

routes/web.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,8 @@
1313
|
1414
*/
1515

16-
Route::get('/', function () {
17-
return view('welcome');
18-
});
16+
Route::get('/', [App\Http\Controllers\HomeController::class, 'index'])->name('home');
1917

2018
Route::get('/blog', 'App\Http\Controllers\PostController@index');
2119

2220
Auth::routes();
23-
24-
Route::get('/home', [App\Http\Controllers\HomeController::class, 'index'])->name('home');

0 commit comments

Comments
 (0)