laravel route namespace

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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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});