{{ $invoice->updated_at->format('Y-m-d') }}
{{ $invoice->month }}
| {{ __('Type') }} | {{ __('Description') }} | {{ __('Date') }} | {{ __('Amount') }} | {{ __('Tax') }} | {{ __('Total') }} |
|---|---|---|---|---|---|
| {{ $item->invoiceType?->name }} | {{ $item->description }} | {{ $item->created_at->format('Y-m-d') }} | {{ currencyPrice($item->amount) }} | {{ currencyPrice($item->tax_amount) }} | {{ currencyPrice($item->amount + $item->tax_amount) }} |
| {{ __('Date') }} | {{ __('Gateway') }} | {{ __('Transaction ID') }} | {{ __('Amount') }} |
|---|---|---|---|
| {{ $order?->created_at->format('Y-m-d') }} | {{ $order?->gatewayTitle ?? __('Cash') }} | {{ $order?->payment_id ? $order?->payment_id : $order?->transaction_id }} | {{ currencyPrice($order?->total) }} |
| {{ __('No Data Found') }} | |||