diff --git a/resources/views/banking/accounts/index.blade.php b/resources/views/banking/accounts/index.blade.php index c9fea20b1..f55623ccf 100644 --- a/resources/views/banking/accounts/index.blade.php +++ b/resources/views/banking/accounts/index.blade.php @@ -33,8 +33,8 @@ {{ Form::bulkActionAllGroup() }} - @sortablelink('name', trans('general.name'), ['filter' => 'active, visible'], ['class' => 'col-aka', 'rel' => 'nofollow']) - @sortablelink('number', trans('accounts.number')) + @sortablelink('name', trans('general.name'), ['filter' => 'active, visible'], ['class' => 'col-aka', 'rel' => 'nofollow']) + @sortablelink('number', trans('accounts.number')) @sortablelink('opening_balance', trans('accounts.current_balance')) @sortablelink('enabled', trans('general.enabled')) {{ trans('general.actions') }} @@ -47,8 +47,8 @@ {{ Form::bulkActionGroup($item->id, $item->name) }} - {{ $item->name }} - {{ $item->number }} + {{ $item->name }} + {{ $item->number }} @money($item->balance, $item->currency_code, true) @if (user()->can('update-banking-accounts')) diff --git a/resources/views/sales/invoices/index.blade.php b/resources/views/sales/invoices/index.blade.php index c93c7af49..7df0d157e 100644 --- a/resources/views/sales/invoices/index.blade.php +++ b/resources/views/sales/invoices/index.blade.php @@ -36,8 +36,8 @@ {{ Form::bulkActionAllGroup() }} - @sortablelink('invoice_number', trans_choice('general.numbers', 1), ['filter' => 'active, visible'], ['class' => 'col-aka', 'rel' => 'nofollow']) - @sortablelink('contact_name', trans_choice('general.customers', 1)) + @sortablelink('invoice_number', trans_choice('general.numbers', 1), ['filter' => 'active, visible'], ['class' => 'col-aka', 'rel' => 'nofollow']) + @sortablelink('contact_name', trans_choice('general.customers', 1)) @sortablelink('amount', trans('general.amount')) @sortablelink('invoiced_at', trans('invoices.invoice_date')) @sortablelink('due_at', trans('invoices.due_date')) @@ -51,8 +51,8 @@ @php $paid = $item->paid; @endphp {{ Form::bulkActionGroup($item->id, $item->invoice_number) }} - {{ $item->invoice_number }} - {{ $item->contact_name }} + {{ $item->invoice_number }} + {{ $item->contact_name }} @money($item->amount, $item->currency_code, true) @date($item->invoiced_at) @date($item->due_at)