laravel prefix 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: route() and with() in laravel

Route::get('user/{id}/profile', function ($id) {
    //
})->name('profile');

$url = route('profile', ['id' => 1, 'photos' => 'yes']);

// /user/1/profile?photos=yes

Example 3: laravel route

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

Example 4: laravel route

Route::view('/welcome', 'welcome');

Route::view('/welcome', 'welcome', ['name' => 'Taylor']);

Example 5: prefix laravel route

Route::get('posts/{post}/comments/{comment}', function ($postId, $commentId) {
    //
});