Answers for "Method Illuminate\Routing\Route::get does not exist"

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 "Method Illuminate\Routing\Route::get does not exist"

Browse Popular Code Answers by Language