laravel 8 route link code example
Example 1: laravel 8 route
Route::get(
'/user/profile',
[UserProfileController::class, 'show']
)->name('profile');
Example 2: laravel route
Route::get('user/profile', [UserProfileController::class, 'show'])->name('profile');