Nombre: {{ $invoice->client->full_name }}
@endif @if(!empty($invoice->client->telephone))Tel: {{ $invoice->client->telephone }}
@endif @if(!empty($invoice->client->cellphone))Cel: {{ $invoice->client->cellphone }}
@endif @if(!empty($invoice->client->address))Dirección: {{ $invoice->client->address }}
@endif @if(!empty($invoice->client->email))Email: {{ $invoice->client->email }}
@endifChofer: {{ $invoice->driver->full_name }}
@endif @if(!empty($invoice->bus->ficha))Ficha: {{ $invoice->bus->ficha }}
@endif @if(!empty($invoice->bus->matricula))Matrícula: {{ $invoice->bus->matricula }}
@endif @if(!empty($invoice->bus->modelo))Modelo: {{ $invoice->bus->modelo }}
@endif @if(!empty($invoice->bus->marca))Marca: {{ $invoice->bus->marca }}
@endif @if(!empty($invoice->bus->color))Color: {{ $invoice->bus->color }}
@endif| Descripción | Tipo Camion | Precio Unitario | Subtotal | Impuesto | Total |
|---|---|---|---|---|---|
| {{ $item->description }} | {{ !empty($item->type_bus->description)?$item->type_bus->description: ''}} | {{ number_format($item->price_unit, 2) }} | {{ number_format($item->price_total, 2) }} | {{ number_format($item->tax_total, 2) }} | {{ number_format($item->amount_total, 2) }} |
| Descuento: | {{ number_format( $invoice->discount_amount , 2) }} | ||||
| Total Bruto: | {{ number_format($suma_total , 2) }} | ||||
| Total General: | {{ number_format($suma_total - $invoice->discount_amount, 2) }} | ||||
| Total General: | {{ number_format($suma_total )}} | ||||
| Notas: {{$invoice->note}} | |||||