laravel call route from controller with parameter code example
Example 1: delete route method in laravel
<form method="POST" action="{{ route('route.name', [ 'id'=> $item->id ]) }}">
@csrf
<input type="hidden" name="_method" value="DELETE">
<button type="submit" class="btn btn-danger btn-icon">
<i data-feather="delete"></i>
</button>
</form>
Example 2: laravel route
Route::get('user/profile', [UserProfileController::class, 'show'])->name('profile');