mercredi 30 mars 2016

Insert querry in laravel 5.1 using foeach loop

my code is:

  $store_ids=Input::get('store_inventory_ids');
        $store_product_inven_qty=Input::get('store_pro_inv_qty');
        $store_attri_ids=Input::get('store_attri_ids');
        $store_id_with_attri_id=Input::get('store_id_attri_id');

    foreach ($store_ids as $key => $store_id) { 
    ProStoreInventoryModel::insert([
    'product_id'=>'1',
    'store_id'=>$store_id,
    'attri_ids'=>'1',
    'attri_ids_with_store_id'=>'1',
    'product_qty'=>'1',
    'status'=>'1',
    'deletestatus'=>'0',
    'created_at'=>date('Y:m:d H:i:s'),
    'updated_at'=>date('Y:m:d H:i:s')
    ]);
    }

This is my model name: ProStoreInventoryModel

The below four variable haves 16 datas in array format.,

$store_ids, $store_product_inven_qty, $store_attri_ids, 
$store_id_with_attri_id.

I just looped main foreach, in that i wrote insert querry, now how can i insert the remaining values.



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire