I have problem, i want to insert input array in database but just insert 1 row in database i can't insert more than 1 row.
public function checkout(Request $request){
$input= $request->all();
$pay = new Pays;
$bill= new detail_bills;
$id_buy= $request->get('post_id');
$name_product= $request->get('name_session');
$picture= $request->get('picture');
$quantity= $request->get('qty');
$price= $request->get('price');
foreach (Session::get('product') as $key =>$value)
{
$item = array([
"id_buy" => $id_buy[$key],
"name_product" => $name_product[$key],
"picture" => $picture[$key],
"price" => $price[$key],
"quantity" => $quantity[$key]
]);
}
DB::table('detail_bills')->insert($item );
}