confirmacion, agregar y quitar productos

This commit is contained in:
Alejandro Tasistro 2024-03-19 22:34:40 -03:00
parent 784b4d97f8
commit 830002b4cf
1 changed files with 20 additions and 0 deletions

View File

@ -96,4 +96,24 @@ function totalTransporte() : int {
function totalChismosa() : float {
return $this->total() + $this->totalTransporte();
}
function toggleConfirm() : bool {
$this->confirmed = !$this->confirmed;
$this->save();
return $this->confirmed;
}
function agregarProducto(Producto $producto, int $cantidad) {
$productoEnChismosa = $this->productos()->where('id', $producto->id)->first();
if ($productoEnChismosa) {
$productoEnChismosa->pivot->cantidad += $cantidad;
$productoEnChismosa->save();
} else {
$this->productos()->attach($producto, ['cantidad' => $cantidad]);
}
}
function quitarProducto(Producto $producto) {
$this->productos()->detach($producto);
}
}