ZayRTun
2/19/2019 - 2:26 AM

route group with name routes

<?php

Route::prefix('/user')->group(function () {
	Router::get('/dashboard', 'UserController@index')->name('user.dashboard');
    Router::get('/profile', 'UserController@profile')->name('user.profile');
});