I developed an API to show a pop up message when the page loaded.
Not all the pages use the pop up API. For example, if the user go to the show($id) pag
Yes you can define path in route like below:
Route::get('store/{id?}/{param1?}/{param2?}/{param3?}', 'clients@store');
You can pass multiple parameter in function and read in controller by passing argument..
You can define in controller :
public function store(id, param1,param2,param3){
//read the param values
}