Skip to content

Commit

Permalink
update home page blade file
Browse files Browse the repository at this point in the history
  • Loading branch information
levijackson committed Jun 25, 2021
1 parent 47bdf4c commit fe7b92c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 137 deletions.
132 changes: 0 additions & 132 deletions resources/views/welcome.blade.php

This file was deleted.

6 changes: 1 addition & 5 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,8 @@
|
*/

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

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

Auth::routes();

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

0 comments on commit fe7b92c

Please sign in to comment.