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

PHP
Because your controller is namespaced unless you specifically import the Auth namespace, PHP will assume it's under the namespace of the class, giving this error.

To fix this, add use Auth; at the top of AdminHomeController file along with your other use statements or alternatively prefix all instances of Auth with backslash like this: \Auth to let PHP know to load it from the global namespace.use Illuminate\Routing\Route;

Source

Also in PHP: