Bulk insert or update for the given where – Laravel
I have a function that gets $homes and $member_id as parameters. $homes is an array, $member_id is an integer. $homes = array( 'home13', 'home21', 'home34', 'home44' ); $member_id = 5; How do I insert/update into the following DB? in the…