Laravel 9 tutorial # Controller Route Groups | new feature

preview_player
Показать описание
In this laravel 9 tutorial, we learn about Controller Route Groups future in English language. Video made by anil Sidhu in English

main points if video
What is Controller Route Groups
How we make Route in Previous Versions
How to make Controller Route Groups
Test Controller Route Groups with Browser
Test Controller Route Groups with Postman

Рекомендации по теме
Комментарии
Автор

it's good but how we group multiple controllers in same directory like in Product folder "ProductController and CateController" how we will group these two controller in laravel 9 ?

like this:

Route::group(['namespace' => 'ProductGroup', 'middleware' => ['auth']], function() {
}
How in laravel in 9 ??
the ProductGroup is folder where the above two controllers inside the folder

soorajking
Автор

how if want to make a route group with different controllers?

koxjnk