Passing data from view to controller in Laravel
问题 I understand that passing record ids through the url isn't usually a good idea, but I am wondering how I can avoid it in my case: My objective is to list job statuses on a user dashboard and allow users to adjust the status. I create my view and pass variables to it using the session: userController.php public function getdashboard() { //reading the user information $arrPageData['user'] = Sentry::getUser(); //reading the job interviews $arrPageData['jobInterviews'] = JobInterview: