Hi, I'm currently trying to display multiple checkbox to another page and it displays Page Expired
My route is Route::get("/nextpage",[PageController::class,"nextpage"]); below is my code
@Sinnbeck I was wrong about my page being displayed okay, turns out I just changed the action to another page. I read something from another page where I can use php artisan route:clear or php artisan route:cache now the page I want is both being displayed however the problem I encountered now is that the selected value from checkbox is not being displayed to the nextpage. Where my code inside the nextpage is still the same
Should I insert the code from nextpage inside the function intead? where the code in my function from controller is but I don't know how I would display it to the other page by doing that
public function nextpage(Request $request){
return view('nextpage');
}