@extends('web.panel.layout') @section('titulo', config('app.name') . ' - Lista de Modelos') @section('head') @endsection @section('ruta-panel') @endsection @section('contenido-panel')

Lista de Facturas

@foreach ($facturas as $factura) @endforeach
NÂș Suscripcion Fecha Total Forma de pago
#{{str_pad($factura->numero_factura, 5, "0", STR_PAD_LEFT) }} {{ $factura->detalle['suscripcion'] }} {{ \Carbon\Carbon::parse($factura->fecha_emision)->format('d/m/Y'); }} {{ $factura->monto_total }}$ {{ $factura->forma_pago->nombre }} @if(!$factura->pagado) (pendiente) @endif
@endsection