Back
@foreach($bills as $bill)
Item |
Description |
Amount ({{ $settings['currency'] }}) |
Total Amount |
@foreach($bill->billItems as $item)
{{ $item->name }} |
{{ $item->description }} |
{{ number_format($item->amount, 2, '.', ',') }} |
{{ number_format($item->pivot->total_amount, 2, '.', ',') }} |
@endforeach
Total Amount: {{ $settings['currency'] }} {{ number_format($bill->total_amount, 2, '.', ',') }}
Discount: {{ $settings['currency'] }} {{ number_format($bill->discount_value, 2, '.', ',') }}
Due Amount: {{ $settings['currency'] }} {{ number_format($bill->due_amount, 2, '.', ',') }}
Previous Balance: {{ $settings['currency'] }} {{ number_format($bill->pre_bal, 2, '.', ',') }}
@endforeach