摘 要
Description
|
金 額
Amount
|
服務名稱:
Programme Name
|
{{ $invoice->programme_name }}
|
|
|
日期及時間:
Date & Time
|
@include('frontend.template.event.date_range',['start_date'=>$invoice->start_date,'end_date'=>$invoice->end_date,'format'=>'d/m/Y','remark'=>null])
|
|
|
@foreach ($invoice->charges()->get() as $charge)
{{ $charge->title }}
|
HK${{ number_format($charge->amount, 2) }}
|
@endforeach
@if ($invoice->programme_remark)
備註:
Remarks
{!! nl2br($invoice->programme_remark) !!}
|
|
@endif
@include('pdf.template.total', [
'is_display' => false,
'total' => number_format($invoice->charges->sum("amount"), 2),
'valid_ch' => '發票',
'valid_en' => 'invoice(s)',
'total_title_ch' => "應付款項",
'total_title_en' => "Please Pay",
'valid_days' => null,
])