@section('css') @endsection @section('js') @endsection

Seleccione una cotizacion de la lista.

{{-- --}}
@foreach ($cotizaciones as $item)

COTIZACION

{{$item->state->name}}
{{-- --}} {{--
HELMET
--}}

Para:

Vendedor :
{{$item->user->name}} {{$item->user->lastname}}

{{$item->client->business_name}}

{{$item->client->address}}

{{$item->client->phone}}

Número : [invoice number]

Fecha : {{date('d-m-Y', strtotime($item->created_at))}}

Validez : {{date('d-m-Y', strtotime($item->expiration))}}

@foreach ($item->products as $pro) @endforeach
Codigo Producto Cantidad Precio Total
{{$pro->barcode}} {{$pro->name}} {{$pro->pivot->quantity}} {{$pro->pivot->price}}
{{--
Payment Info:

Bank Name:

Bank of America

Account Number :

1234567890

--}}

Sub Total:

$13300

IVA:

$700

Descuento : X%

$700

Total :

{{-- @dd($item) --}} @if($item->total != null)

$ {{$item->total}}

@else 0 @endif
@endforeach

Gracias por cotizar con nosotros.