Indirect modification of overloaded element of AppModels has no effect – Laravel
I’m getting this error: Indirect modification of overloaded element of AppModels has no effect, change ->get(); to ->first->toArray(); another error Call to a member function toArray() on null here the code $penjualan = Penjualan::find(session('id_penjualan')); $detail = PenjualanDetail::with('produk')->where('id_penjualan', session('id_penjualan'))->get(); $transaction =…