@extends('web.secciones.layout') @section('titulo', 'Factura - ' . config('app.name')) @section('head') @endsection @section('bodytags', '') @section('contenido')
![]() |
@if ($factura->quiere_factura) FACTURA @else RECIBO @endif |
| #{{ str_pad($factura->numero_factura, 5, '0', STR_PAD_LEFT) }} |
DE
|
@if ($factura->quiere_factura) FACTURAR A @else RECIBO A @endif
|
|
| Plan | Tipo | Meses | PVP/Mes | Subtotal |
|---|---|---|---|---|
| {{ $factura->detalle['suscripcion'] }} | {{ $factura->detalle['periodo'] }} | {{ $factura->detalle['meses'] }} | ${{ number_format($factura->detalle['precio_mes'], 2) }} | ${{ number_format($factura->detalle['meses'] * $factura->detalle['precio_mes'], 2) }} |
| OFERTA @if ($factura->detalle['oferta']) -{{ number_format($factura->detalle['oferta'], 0) }}% @endif | @if ($factura->detalle['oferta']) @php $precio_sin_oferta = $factura->detalle['meses'] * $factura->detalle['precio_mes']; $oferta = ($precio_sin_oferta * $factura->detalle['oferta']) / 100; @endphp -${{ number_format($oferta, 2) }} @else - @endif | |||
| IVA | ${{ number_format(($factura->monto_total * 12) / 100, 2) }} | |||
| TOTAL | ${{ number_format($factura->monto_total, 2) }} | |||
SUSCRIPCIONSuscripcion: {{ $factura->detalle['suscripcion'] }}Meses: {{ $factura->detalle['meses'] }} meses Desde: {{ $factura->detalle['meses'] }} Hasta: {{ $factura->detalle['meses'] }} |
METODO DE PAGOForma de Pago:@if ($factura->pagado) Estado: Pagado Recibo de Pago: {{ $factura->pagado_recibo }} Fecha de Pago: {{ \Carbon\Carbon::parse($factura->pagado_fecha)->format('d/m/Y') }} @else Estado: Pendiente de Pago @endif |
¡Muchas gracias por su compra!Si tiene alguna duda, por favor contactenos. |