i have a problem while passing a variable into the URL , the route exists but still 404 NOT FOUND , This is the form :
I have two observations:
First, I can see that your form action is "/rdv_{{$go->ID}}". I think it should be "/rdv/{{$go->ID}}"
instead. Note that I changed the '_' to '/'.
Second, I think you should also change your route to this (Note that I changed the '_' to '/'):
Route::post('/rdv/{ID}','rendezv@rdv');
Hope that solves the problem.
Regards.