diff --git a/resources/views/invoices/pdf.blade.php b/resources/views/invoices/pdf.blade.php index 1510e40..c830812 100755 --- a/resources/views/invoices/pdf.blade.php +++ b/resources/views/invoices/pdf.blade.php @@ -59,14 +59,14 @@
{!! nl2br($customer->address) !!}
@endif @if ($customer->phone) -{{ trans('contact.phone') }} : {{ $customer->phone }}
+{{ __('contact.phone') }} : {{ $customer->phone }}
@endif @if ($customer->website){{ $customer->website }}
@@ -86,7 +86,7 @@{{ dateId($invoice->due_date) }}
@endif @if ($taxId = Option::get('agency_tax_id')) @@ -95,15 +95,15 @@ @endif| {{ trans('app.table_no') }} | -{{ trans('invoice.item_description') }} | -{{ trans('invoice.item_amount') }} | +{{ __('app.table_no') }} | +{{ __('invoice.item_description') }} | +{{ __('invoice.item_amount') }} | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ trans('app.total') }} | +{{ __('app.total') }} | {{ formatRp($invoice->amount) }} | |||||||||||||
| {{ trans('payment.words_amount') }} : | +{{ __('payment.words_amount') }} : | {{ ucwords(Terbilang::make($invoice->amount)) }} {{ Option::get('money_sign_in_word', 'Rupiah') }} | @@ -162,9 +162,9 @@ @foreach ($bankAccounts as $key => $bankAccount) @php $bankAccount = (object) $bankAccount; @endphp|||||||||||||
| {{ trans('bank_account.name') }} | : {{ $bankAccount->name }} |
| {{ trans('bank_account.number') }} | : {{ $bankAccount->number }} |
| {{ trans('bank_account.account_name') }} | : {{ $bankAccount->account_name }} |
| {{ __('bank_account.name') }} | : {{ $bankAccount->name }} |
| {{ __('bank_account.number') }} | : {{ $bankAccount->number }} |
| {{ __('bank_account.account_name') }} | : {{ $bankAccount->account_name }} |