I want to create and php associative array from an array like bellow
 array:3 [▼
  0 => array:7 [▼
    "item_id" => "1"
    "customer_id" => "53453"
    "name" => "Item3"
    "price" => 0
    "quantity" => 1
  ]
  1 => array:7 [▼
    "item_id" => "3"
    "customer_id" => "53453"
    "name" => "Item1"
    "price" => 0
    "quantity" => 1
  ]
  2 => array:7 [▼
    "item_id" => "2"
    "customer_id" => "765656"
    "name" => "Item2"
    "price" => 0
    "quantity" => 1
  ]
]
I want to create an assoc with customer_id from this array like bellow. My goal is to create an assoc array with common customer_id for get all customer itmes.
 array:2 [▼
  // if common customer id, make an item array for the customer
  53453=> array:2 [▼
   0 => array:3 [▼
      "quantity" => "1"
      "name" => "Item1"
      "price" => 0
    ],
   1 => array:3 [▼
      "quantity" => "1"
      "name" => "Item3"
      "price" => 0
    ]
  ]
  78640 => array:1 [▼
    0 => array:3 [▼
      "quantity" => "1"
      "name" => "Item2"
      "price" => 0
    ]
  ]
  
]
 
     
    