Why getting the below error in laravel
ReflectionException in Container.php, Class not found?
usually this error will come beacuse of wrong includes.
if we use use Illuminate\Http\Request; before the “namespace App\Http\Controllers;” it wil throw error
so please use as like below to fix this issue
namespace App\Http\Controllers;
use Illuminate\Http\Request;