From d36ae59e0cfd043cd930257c7172475795797f94 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Tue, 19 Mar 2019 17:56:10 -0400 Subject: [PATCH] Rename the index blade to home to match its class and the vue component --- .../resources/views/pages/{index.blade.php => home.blade.php} | 0 traditional-bootstrap/routes/web.php | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename traditional-bootstrap/resources/views/pages/{index.blade.php => home.blade.php} (100%) diff --git a/traditional-bootstrap/resources/views/pages/index.blade.php b/traditional-bootstrap/resources/views/pages/home.blade.php similarity index 100% rename from traditional-bootstrap/resources/views/pages/index.blade.php rename to traditional-bootstrap/resources/views/pages/home.blade.php diff --git a/traditional-bootstrap/routes/web.php b/traditional-bootstrap/routes/web.php index f1cd405..312e67a 100644 --- a/traditional-bootstrap/routes/web.php +++ b/traditional-bootstrap/routes/web.php @@ -66,7 +66,7 @@ Route::get('/language/{lang}', function($lang) { }); Route::get('/', function() { - return view('pages.index'); + return view('pages.home'); }); Route::get('/blog', function() {