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

Process Bills

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(empty($latestBillingPeriod))
There are no unbilled periods available for processing.
@else
@csrf
Billing Period: {{ $latestBillingPeriod ?? 'N/A' }}
@if(isset($pendingBills) && count($pendingBills) > 0) @foreach($pendingBills as $bill) @endforeach @else @endif
Select Invoice # Company Name Billing Period
{{ $bill->invoice_id ?? 'N/A' }} {{ $bill->company_name ?? 'N/A' }} {{ $bill->BillingPeriod ?? 'N/A' }}
No pending bills found
Close
Processing...

Processing, please wait...

@if(session('processed_count')) @endif @endif
@endsection @push('styles') @endpush @push('scripts') @endpush