#{{ ($invoice->id < 10) ? "0".$invoice->id : $invoice->id }}
Issue Date: {{ $invoice->paid_on->format("dS M Y") }}
# | @lang("app.description") | @lang("app.date") | @lang("app.amount") | |
---|---|---|---|---|
1 | {{ ucfirst($invoice->package->name) }} - {{ ucfirst($invoice->company->package_type) }} |
{{ $invoice->paid_on->format($global->date_format) }} - {{ $invoice->next_pay_date->format($global->date_format) }} |
@if(!is_null($invoice->currency)){!! htmlentities($invoice->currency->currency_symbol) !!}@else ₹ @endif{{ number_format((float)$invoice->total, 2, '.', '') }} | |
@lang("modules.invoices.total") | @if(!is_null($invoice->currency)){!! htmlentities($invoice->currency->currency_symbol) !!}@else ₹ @endif{{ number_format((float)$invoice->total, 2, '.', '') }} |
@lang("app.note"): Here @if(!is_null($invoice->currency)){!! htmlentities($invoice->currency->currency_symbol) !!}@else ₹ @endif refers to {!! $invoice->currency->currency_code !!}