In my application, a user has the ability to remind another user about an event invitation. To do that, I need to pass both the IDs of the event, and of the user to be invit
Route::get('/details/{id}/{id1}/{id2}', 'HomeController@SearchDetails');
//pass data like the below code
dcode}/{$orga_list->dname}/{$GroupHead}")}}"
target="_blank" > Details
//controller write like the below code
public function SearchDetails($id, $searchtext,$grp_searchtext)
{
// get data like the below code
$data['searchtext'] = $searchtext;
$data['grp_searchtext'] = $grp_searchtext;
$data['id_is'] = $id;
}