@extends('layout') @section('content') @section('ventas-active', 'active') @section('cotizaciones-active', 'active')
@endif
| COTIZACION | |
|---|---|
| N°: | CO - 0{{ $cotizacion->id }} |
| FECHA DOCUMENTO | {{ Carbon\Carbon::parse($cotizacion->fecha_documento)->format('d/m/y') }} |
| FECHA ATENCION | {{ Carbon\Carbon::parse($cotizacion->fecha_atencion)->format('d/m/y') }} |
| DATOS DEL CLIENTE | |
|---|---|
| TIPO DE DOCUMENTO: | {{$cotizacion->cliente->tipo_documento}} |
| DOCUMENTO: | {{$cotizacion->cliente->documento}} |
| NOMBRE: | {{$cotizacion->cliente->nombre}} |
| DIRECCION: | {{$cotizacion->cliente->direccion}} |
| CELULAR: | @if($cotizacion->cliente->telefono_movil) {{$cotizacion->cliente->telefono_movil}} @else - @endif |
| TELEFONO: | @if($cotizacion->cliente->telefono_fijo) {{$cotizacion->cliente->telefono_fijo}} @else - @endif |
| CORREO: | @if($cotizacion->cliente->correo_electronico) {{$cotizacion->cliente->correo_electronico}} @else - @endif |
| CANTIDAD | UNIDAD DE MEDIDA | DESCRIPCION DEL PRODUCTO | PRECIO | TOTAL |
|---|---|---|---|---|
| {{$detalle->cantidad}} |
{{$detalle->producto->tabladetalle->simbolo.' - '.$detalle->producto->tabladetalle->descripcion}}
|
{{$detalle->producto->codigo.' - '.$detalle->producto->nombre}}
|
{{'S/. '.$detalle->precio}} | {{'S/. '.number_format($detalle->cantidad * $detalle->precio, 2, '.', '')}} |
| Sub Total | {{'S/. '.$cotizacion->sub_total}} | |||
| IGV @if($cotizacion->igv) {{$cotizacion->igv}} % @else 18 % @endif | {{'S/. '.$cotizacion->total_igv}} | |||
| Total | {{'S/. '.$cotizacion->total}} | |||