We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5621ac8 commit 26487f6Copy full SHA for 26487f6
app/Http/Controllers/BlCuentaCobroController.php
@@ -5,7 +5,7 @@
5
use App\Models\BlCuentaCobro;
6
use App\Models\BlCuentaCobroItem;
7
use App\Models\BLCliente;
8
-use App\Models\BLMarcacion;
+use App\Models\BlMarcacion;
9
use App\Models\BLPedido;
10
use App\Models\BLPedidoItem;
11
use App\Models\User;
@@ -45,7 +45,7 @@ public function pasarPagados(Request $request)
45
'cuenta_cobro_id' => $cuenta->id,
46
'marcacion_id' => $item['marcacion_id'],
47
]);
48
- BLMarcacion::where('id', $item['marcacion_id'])->update(['pagado' => 1]);
+ BlMarcacion::where('id', $item['marcacion_id'])->update(['pagado' => 1]);
49
}
50
});
51
return back()->with('success', 'Cuenta de cobro creada y items marcados como pagados.');
0 commit comments