Level 80
@marbobo If you want Laravel features, use Laravel.
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
My favorite changes in laravel 8 is the making of fully qualified namespace in route as default.. like the code below.
Route::get('/', [ArticlesController::class, 'index'])->name('articles.index');
is it possible to achieve this on lumen version 8? is someone did this already? can you please tell me how you do it? thanks!!!!
Please or to participate in this conversation.