route with parameter in html laravel code example
Example 1: laravel route param blade
<a class="nav-link" href=" {{ route('profiles.show',$logged_user) }}">
Example 2: laravel route
Route::get('user/profile', [UserProfileController::class, 'show'])->name('profile');