{{$title}} |
|
Bill No: |
{{$invoice->id}} |
|
|
Mr: {{$member->name}} |
Month/Year: {{$invoice->month}} / {{$invoice->year}} |
PARTICULARS |
Rs |
@php $total = 0; @endphp
Monthly Subscription Fee |
{{ $invoice->subscription_fee }} |
@php $total += $invoice->subscription_fee; @endphp
@foreach($services as $service)
{{ $service->service->name }} |
{{ $service->amount }} |
@php $total += $service->amount; @endphp
@endforeach
Total |
{{$total}} |
Arrears |
{{$arrears}} |
G.Total |
{{$total+$arrears}} |
|
|
|
|
|
|