{{ ($bill->paid) ? 'Paid' : 'Unpaid' }}


{{ $bill->staff_invoice_number }}

{{ $bill->name }}
{{ $bill->address }}
Bill To:
{{ settings('company_name') }}:
{{ settings('company_address') }}

Date: {{ sql2date($bill->created_at) }}



@foreach($bill->items as $key=>$item) @endforeach
# Item Quantity Rate Sub Total
{{ $key + 1 }} {{ $item->order->title }}
{{ $item->order->service->name }}
{{ $item->order->number_of_pages }} {{ format_money($item->total) }} {{ format_money($item->total) }}
Total {{ format_money($bill->total) }}
@if($bill->note)
Note
{{ $bill->note }}
@endif