@extends('layout') @section('header') @endsection @section('content')
@if($invoices->count()) @foreach($invoices as $invoice) @endforeach
ID DESCRIPTION AMOUNT RFC NAME DATE STATUS xml_file PDF_FILE OPTIONS
{{$invoice->id}} {{$invoice->description}} {{$invoice->amount}} {{$invoice->rfc}} {{$invoice->name}} {{$invoice->date}} {{$invoice->status}} {{$invoice->xml_file}} {{$invoice->pdf_file}} View Edit
{!! $invoices->render() !!} @else

No has cargado ninguna factura aún.

@endif
@endsection