Answers for "class "illuminate\routing\controller" not found in /"

PHP
0

Class 'App\Http\Controllers\Admin\Route' not found

use Illuminate\Routing\Route;
Posted by: Guest on February-23-2021
0

Method Illuminate\Routing\Route::get does not exist

<?php
//This import is wrong:

	use Illuminate\Routing\Route;

//You actually don't have to import any class as Laravel registers a global alias Route.
//If you want to import the right class, that would be:

	use Illuminate\Support\Facades\Route;
Posted by: Guest on October-15-2020

Code answers related to "class "illuminate\routing\controller" not found in /"

Browse Popular Code Answers by Language