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 @@ -

{{ trans('invoice.invoice') }}

-
{{ trans('invoice.number') }} : INV-{{ $invoice->number }}
-
{{ trans('app.date') }} : {{ dateId($invoice->date) }}
+

{{ __('invoice.invoice') }}

+
{{ __('invoice.number') }} : INV-{{ $invoice->number }}
+
{{ __('app.date') }} : {{ dateId($invoice->date) }}
-

{{ trans('app.to') }} :

+

{{ __('app.to') }} :

@php $customer = $invoice->project->customer; @endphp @@ -75,7 +75,7 @@

{!! 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 @@ @if ($invoice->due_date) -

{{ trans('invoice.due_date') }}

+

{{ __('invoice.due_date') }}

{{ dateId($invoice->due_date) }}

@endif @if ($taxId = Option::get('agency_tax_id')) @@ -95,15 +95,15 @@ @endif - {{ trans('invoice.items') }} : + {{ __('invoice.items') }} : - - - + + + @@ -134,7 +134,7 @@ @endif - + @@ -142,7 +142,7 @@ - + @@ -162,9 +162,9 @@ @foreach ($bankAccounts as $key => $bankAccount) @php $bankAccount = (object) $bankAccount; @endphp
{{ 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') }}
- - - + + +
{{ 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 }}
@if ($key == count($bankAccounts))
@endif @endforeach