laravel route group code example
Example 1: laravel Route::group definition
Route::group(['prefix'=>'accounts','as'=>'account.'], function(){
Route::get('/', 'AccountController@index')->name('index');
Route::get('connect', 'AccountController@connect')->name('connect');
});
Route::group(['prefix'=>'quotes','as'=>'quote.'], function(){
Route::get('/', 'QuoteController@index')->name('index');
Route::get('connect', 'QuoteController@create')->name('create');
});
Example 2: group routes in laravel
Route::middleware(['first', 'second'])->group(function () {
Route::get('/', function () {
});
Route::get('/user/profile', function () {
});
});
Example 3: named route with parameter laravel
Route::get('/menu/{category}/{product}/{item}', ['as' => 'named.route' , 'uses' => 'MenuController@listItem']);
route('named.route', ['category' => $category->id, 'product' => $product->id, 'item' => $item->id]);
Example 4: laravel group routes
Route::group(['prefix' => 'admin'], function () {
Route::get('users', function () {
});
});
Example 5: laravel route namespace and prefix
Route::prefix('admin')->group(function () {
Route::get('/users', function () {
});
});
Example 6: laravel routes return view in web.php
Route::get("/page", function(){
return View::make("dir.page");
});