I need to hide the url value in php as i have a booking site and users are able to edit their reservation through the URL if needed.
This is how the URL link looks like.
http://spiaggiasanmontano.it/booking/S12/2021-06-11/2021-06-12/0
i'm trying to remove the dates in the URL without breaking the code, any idea how i can do this?
And this is the route controller for it.
Route::get('/booking/{place_id}/{checkin}/{checkout}/{error_msg}', 'PagesController@createbooking')->name('user.createbooking');