@extends('layouts.master') @section('page_title', 'Bill Details') @section('content')
Back @foreach($bills as $bill) @foreach($bill->billItems as $item) @endforeach
Item Description Amount ({{ $settings['currency'] }}) Total Amount
{{ $item->name }} {{ $item->description }} {{ number_format($item->amount, 2, '.', ',') }} {{ number_format($item->pivot->total_amount, 2, '.', ',') }}
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
@endsection