MODIFICAR COTIZACIÓN # {{$cotizacionId}}

@if (session()->has('success'))
{{ session('success') }}
@endif @if (session()->has('error'))
{{ session('error') }}
@endif
@csrf
Datos Cliente :
@error('rut')

{{ $message }}

@enderror
@error('nombre')

{{ $message }}

@enderror
@error('fono')

{{ $message }}

@enderror
@error('correo')

{{ $message }}

@enderror
@error('direccion')

{{ $message }}

@enderror
@error('costoEnvio')

{{ $message }}

@enderror
@error('descuento')

{{ $message }}

@enderror
Productos Orden:
{{--

Total: {{Currency::currency("USD")->format($this->totalCosto)}}

--}}
@if(count($productos) && !is_null($buscar))
    @foreach($productos as $item)
    SKU: {{$item->SKU}}
    {{Str::limit($item->Titulo,37)}}

    Stock : {{$item->STOCK_TOTAL}}

    Precio: {{Currency::currency("CLP")->format(round($item->PRECIO))}}

    @endforeach
@endif @if ($mostrar)
No existe producto a mostrar
@endif @if (session()->has('NoStock'))
{{ session('NoStock') }}
@endif
@if (session()->has('Productos'))
  • {{ session('Productos') }}
@endif @if(count($carro)) @foreach ($carro as $key => $item) @endforeach @endif
# SKU Producto Precio Cantidad Subtotal Accion
{{$key + 1}} {{$item['sku']}} {{$item['titulo']}} {{Currency::currency("CLP")->format($item['precio'])}} @error("carro.$key.cantidad") {{ $message }} @enderror {{ Currency::currency("CLP")->format(round($item['precio'] * max(1, (int) $item['cantidad']))) }}
Costo Envío: {{ Currency::currency("CLP")->format(round($this->totales['costoEnvio'])) ?? 0 }}
Total Neto: {{ Currency::currency("CLP")->format(round($this->totales['neto'])) }}
IVA (19%): {{ Currency::currency("CLP")->format(round($this->totales['iva'])) }}
Total Bruto: {{ Currency::currency("CLP")->format(round($this->totales['bruto'])) }}
Descuento: {{ Currency::currency("CLP")->format(round($this->totales['descuento'])) }}
Total a Pagar: {{ Currency::currency("CLP")->format(round($this->totales['totalPagar'])) }}
@if(count($carro))

@endif
@push('scripts') @endpush