laravel route namespace

Solutions on MaxInterview for laravel route namespace by the best coders in the world

showing results for - "laravel route namespace"
Anna
04 Jun 2016
1Route::prefix('admin')->group(function () {
2    Route::get('/users', function () {
3        // Matches The "/admin/users" URL
4    });
5});
Kiersten
09 Sep 2016
1Route::namespace('Admin')->group(function () {
2    // Controllers Within The "App\Http\Controllers\Admin" Namespace
3});