Skip to content

Commit

Permalink
fix(routes): home route
Browse files Browse the repository at this point in the history
  • Loading branch information
Marius Palade committed Oct 8, 2022
1 parent 1c0714f commit 79b8e59
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion routes/web.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?php

use App\Http\Controllers\HomeController;
use Illuminate\Support\Facades\Route;

/*
Expand All @@ -13,4 +14,4 @@
|
*/

Route::get('/', 'HomeController@index');
Route::get('/', [HomeController::class, 'index']);

0 comments on commit 79b8e59

Please sign in to comment.