{{-- extend layout --}} @extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title','Detalle de Factura' ) {{-- page styles --}} @section('page-style') @endsection {{-- page content --}} @section('content')
Factura {{ $factura->comprobante }}
Fecha: {{ \Carbon\Carbon::parse($factura->fecha)->format('d/m/Y') }}
@if($factura->vencimiento)
Vencimiento: {{ \Carbon\Carbon::parse($factura->vencimiento)->format('d/m/Y') }}
@endif

Factura

Hosting & Software Development
REVISION ALPHA S.L.
NIF: B16704934
González Besada 39,
Oviedo, Asturias, España
{{ $factura->razon_social }}
NIF/CIF: {{ $factura->cuit }}
@if($factura->domicilio)
{{ $factura->domicilio }},
{{ $factura->localidad ?? '' }}, {{ $factura->provincia ?? '' }}, {{ $factura->pais ?? '' }}
@endif
@foreach($items as $item) @endforeach
Description Importe
{{ $item->descripcion }} {{ $item->valor }}€

Transferencias:
Banco Caja Rural de Asturias
IBAN ES46 3059 0064 7733 1011 2929

  • Subtotal
    {{ $factura->bruto }}€
  • @if($factura->descuento > 0)
  • Descuento
    -{{ $factura->descuento }}€
  • @endif
  • I.V.A. 21%
    @if($factura->descuento > 0) {{ number_format($factura->bruto - ($factura->descuento * 0.21), 2) }}€ @else {{ number_format($factura->bruto * 0.21, 2) }}€ @endif
  • Total
    {{ $factura->total_neto }}€
@endsection {{-- page scripts --}} @section('page-script') @endsection