@extends('layouts.master') @section('content')

@lang('models/invoices.plural')

@include('flash::message')

@lang('models/invoices.plural') Detail

Pending Invoice Filters
Display all pending invoices from companies that have at least 2 pending invoices
View all pending invoices for a specific company
Clear Filters
@if($companyStats && $companyStats->total_pending_invoices > 0)

{{ $companyStats->company_name }} - Pending Invoice Summary


Total Pending Invoices

{{ $companyStats->total_pending_invoices }}

Total Pending Amount

{{ number_format($companyStats->total_pending_amount, 2) }}

@elseif($companyStats && $companyStats->total_pending_invoices == 0)
{{ $companyStats->company_name }}

This company has no pending invoices. All invoices are complete!

@endif @include(strtolower(__('models/invoices.plural')).'.table')
@endsection @push('styles') @endpush @section('scripts') @endsection