@extends('layouts.list_pdf') @section('pdf-title')
{{ __('Customer Invoices') }}
{{ __('Name:') }} {{ isset($customers) ? $customers->name : '' }}
@if (isset($date_range) && !empty($date_range)){{ __('Period:') }} {{ $date_range }}
@endif{{ __('Print Date:') }} {{ formatDate(date('d-m-Y')) }}
| {{ __('Invoice No') }} | {{ __('Total Price') }} | {{ __('Paid Amount') }} | {{ __('Currency') }} | {{ __('Status') }} | {{ __('Invoice Date') }} |
| {{ $data->reference }} | {{ formatCurrencyAmount($data->total) }} | {{ formatCurrencyAmount($data->paid) }} | {{ isset($customers->currency->name) && !empty($customers->currency->name) ? $customers->currency->name : '' }} | {{ $status }} | {{ formatDate($data->order_date) }} |
| {{ __('Total') }} | {{ formatCurrencyAmount(abs($total), $customers->currency->name) }} | {{ formatCurrencyAmount(abs($paid_amount), $customers->currency->name) }} |