A fresh L5 install today appears to have issues with my routes not being added to the routes.scanned.php file.
In my RouteService Provider I have:
protected $scan = [ 'App\Http\Controllers\HomepageController', ];
in my controller I have:
/** * @Get("/", as="home") * * @return \Illuminate\View\View */ public function homepage() {
return view('homepage.homepage');
}
I have tried
php artisan clear-compiled
php artisan route:scan
But nothing changes or adds route entries to the scanned list
Anybody else getting these issues?
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community