diff --git a/resources/views/welcome.blade.php b/resources/views/index.blade.php similarity index 100% rename from resources/views/welcome.blade.php rename to resources/views/index.blade.php diff --git a/routes/web.php b/routes/web.php index b130397..758b028 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('index'); });