laravel 8 routing 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 8 routes namespace

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

Example 4: laravel route

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

Example 5: routing in laravel

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

Example 6: laravel route

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

Tags: