In config/app.php
'aliases' => [
'Route' => Illuminate\Support\Facades\Route::class,
],
when I am using Route
in routes/web.php
like
Route::get('/', 'UserController@home');
I installed php intelephense extension in my vs code. So that it is showing error like
Does anyone have any idea how to fix this issue? (Functionality is working fine but it is showing like the error is the problem)
use Illuminate\Support\Facades\Route;
at the top of yourweb.php
? – Chimpanzee