AutoTaller ProServicio automotriz especializadoRUC: 20601234567 · Lima, Perú
{{ $orden->numero }}
Orden de servicio
Ingreso: {{ optional($orden->fecha_ingreso)->format('d/m/Y') }}

Cliente

Nombre{{ $orden->cliente->nombre_completo ?? '—' }}
Documento{{ $orden->cliente->documento ?? '—' }}
Teléfono{{ $orden->cliente->telefono ?? '—' }}
Correo{{ $orden->cliente->email ?? '—' }}

Vehículo

Placa{{ $orden->vehiculo->placa ?? '—' }}
Marca / Modelo{{ $orden->vehiculo->marca ?? '' }} {{ $orden->vehiculo->modelo ?? '' }}
Año{{ $orden->vehiculo->anio ?? '—' }}
Kilometraje{{ $orden->kilometraje ? number_format($orden->kilometraje).' km' : '—' }}
@if ($orden->diagnostico)
Diagnóstico
{{ $orden->diagnostico }}
@endif @if ($orden->servicios->count())
Servicios / mano de obra
@foreach ($orden->servicios as $s) @endforeach
DescripciónCant.PrecioSubtotal
{{ $s->descripcion }}{{ $s->cantidad }}S/ {{ number_format($s->precio,2) }}S/ {{ number_format($s->subtotal,2) }}
@endif @if ($orden->repuestos->count())
Repuestos / materiales
@foreach ($orden->repuestos as $r) @endforeach
DescripciónCant.PrecioSubtotal
{{ $r->descripcion }}{{ $r->cantidad }}S/ {{ number_format($r->precio,2) }}S/ {{ number_format($r->subtotal,2) }}
@endif
SubtotalS/ {{ number_format($orden->subtotal,2) }}
Descuento- S/ {{ number_format($orden->descuento,2) }}
IGV (18%)S/ {{ number_format($orden->impuesto,2) }}
TOTALS/ {{ number_format($orden->total,2) }}
Firma del cliente
Firma del taller
Documento generado por AutoTaller Pro · {{ now()->format('d/m/Y H:i') }} · ¡Gracias por su preferencia!