diff --git a/resources/views/invoices/index.blade.php b/resources/views/invoices/index.blade.php index 7a48368..cafcf2c 100755 --- a/resources/views/invoices/index.blade.php +++ b/resources/views/invoices/index.blade.php @@ -1,30 +1,30 @@ @extends('layouts.app') -@section('title', trans('invoice.list')) +@section('title', __('invoice.list')) @section('content')
| {{ trans('app.table_no') }} | -{{ trans('invoice.number') }} | -{{ trans('app.date') }} | -{{ trans('project.project') }} | -{{ trans('invoice.customer') }} | -{{ trans('invoice.amount') }} | -{{ trans('app.action') }} | +{{ __('app.table_no') }} | +{{ __('invoice.number') }} | +{{ __('app.date') }} | +{{ __('project.project') }} | +{{ __('invoice.customer') }} | +{{ __('invoice.amount') }} | +{{ __('app.action') }} | @forelse($invoices as $key => $invoice) @@ -49,22 +49,16 @@ [ 'icon' => 'print', 'class' => 'btn btn-default btn-xs', - 'title' => trans('invoice.print'), 'target' => '_blank' + 'title' => __('invoice.print'), 'target' => '_blank' ] ) !!} @empty -
|---|---|---|---|---|---|---|
| {{ trans('invoice.empty') }} | ||||||
| {{ __('invoice.empty') }} | ||||||
| {{ trans('app.total') }} | -{{ format_money($invoices->sum('amount')) }} | -- | ||||