{{ $pageTitle }}
{{ __('SL') }} | {{ __('Invoice No') }}. | {{ __('Name') }} | {{ __('Issus Date') }} | {{ __('Due Date') }} | {{ __('Amount') }} | {{ __('Recept') }} | {{ __('Action') }} |
---|---|---|---|---|---|---|---|
{{ $loop->iteration }} | {{ $invoice->invoice_no }} | {{ $invoice->name }} | {{ $invoice->created_at->format('d M Y') }} |
{{ $invoice->due_date }}
@if ($invoice->status != INVOICE_STATUS_PAID)
@if ($invoice->due_date < date('Y-m-d'))
{{ __('Over Due') }}
@endif
@endif
|
{{ currencyPrice($invoice->amount) }} | {{ __('Print') }} |
@if ($invoice->status == INVOICE_STATUS_PENDING)
{{ __('Pay Now') }}
@elseif ($invoice->status == INVOICE_STATUS_PAID)
{{ __('Paid') }}
@endif
|