lumen: App\Http\Controllers\Controller class not found with fresh install
问题 I'm working with a fresh install of Lumen (building a web API), most things work but when i'm trying to use the router to point to a class i get this error: Fatal error: Class 'App\Http\Controllers\Controller' not found in /Applications/MAMP/htdocs/moments/lumen/app/Http/Controllers/MomentController.php on line 5 This is my router in app/Http/routes.php $app->get('/', 'MomentController@index'); And this is my class in app/Http/Controllers/MomentController.php <?php namespace App\Http