diff options
author | Frankie B <git@diskfloppy.me> | 2023-06-13 23:07:20 +0100 |
---|---|---|
committer | Frankie B <frankieraybrown@gmail.com> | 2023-06-14 22:15:44 +0100 |
commit | 8e627b16712e90134919c7366dffa4993a13165a (patch) | |
tree | 63517d53c74594189cc46857bdbd06decbaac5f2 /routes | |
parent | a464ef4c0e3ce235fb1da70dfb282449beeeac80 (diff) |
Add global layout and homepage
Diffstat (limited to 'routes')
-rw-r--r-- | routes/web.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routes/web.php b/routes/web.php index d259f33..6af7650 100644 --- a/routes/web.php +++ b/routes/web.php @@ -14,5 +14,5 @@ use Illuminate\Support\Facades\Route; */ Route::get('/', function () { - return view('welcome'); + return View::make('pages.home'); }); |