Posts by Diego Martins • 1 point
1 post
-
0
votes0
answers57
viewsQ: (PHP/Laravel) Error adding a second item to the array does not increase the amount of the second item
My Controller public function Adicionar(Request $request) { $id_produto = $request->get('botao'); $itens = $this->carrinho->getItens(); //dd($itens); try{ foreach($itens as $item){ $est =…