Hi I am working in Laravel.
I need to select all rows from databse with selected company_id. In form company_id is multi select
This is what I have done
$data = $request->All();
$notifyTo = $data['notify_to']; /**value from multiselect which is an array**/
foreach($notifyTo as $noTo => $value){
$user = User::all()->where('company_id', "=", $value)->where('status', "=", 1);
}
print_r($user); exit;
here $data['notify_to'] is the value from multiselct , which is an array of company_id Array ( [0] => 11 [1] => 22 [2] => 33 )
Table Structure
| id | name | company_id | status |
-----------------------------------