In my cart I have a value that I need send to order_items, I have sent my variable to view and it's displaying correctly, but when save order, the value return NULL. I have checked all data, but probably the problem is how I'm sending.
Controller:
$dataProdutos['detalhesEstoque'] = $this->produtos_model->detalhesEstoque('23');
View: Displaying correctly.
<?= $detalhesEstoque[0]->codprod ?>
How I'm trying to send to MySQL using this variable:
$detalhesEstoque[0]->codprod;