routing in laravel 8 code example

Example 1: laravel route namespace and prefix

Route::prefix('admin')->group(function () {
    Route::get('/users', function () {
        // Matches The "/admin/users" URL
    });
});

Example 2: laravel 8 route

Route::get(
    '/user/profile',
    [UserProfileController::class, 'show']
)->name('profile');

Example 3: laravel route

Route::get('user/{id}', function ($id) {
    return 'User '.$id;
});

Example 4: laravel 8 routes namespace

Route::group(['namespace' => 'App\Http\Controllers', 'prefix' => 'admin',
 'as' => 'admin.', 'middleware' => ['auth:sanctum', 'verified']], function()
{
    Route::get('/dashboard', ['DashboardController', 'index']);
});

Example 5: laravel route match

Route::match(['get', 'post'], '/', function () {
    //
});

Route::any('/', function () {
    //
});

Example 6: laravel route

Route::get('user/profile', [UserProfileController::class, 'show'])->name('profile');

Tags:

Php Example