diff --git a/resources/views/purchases/bills/index.blade.php b/resources/views/purchases/bills/index.blade.php
index 66609a29a..4049129d2 100644
--- a/resources/views/purchases/bills/index.blade.php
+++ b/resources/views/purchases/bills/index.blade.php
@@ -37,7 +37,7 @@
{{ Form::bulkActionAllGroup() }} |
@sortablelink('bill_number', trans_choice('general.numbers', 1), ['filter' => 'active, visible'], ['class' => 'col-aka', 'rel' => 'nofollow']) |
- @sortablelink('contact_name', trans_choice('general.vendors', 1)) |
+ @sortablelink('contact_name', trans_choice('general.vendors', 1)) |
@sortablelink('amount', trans('general.amount')) |
@sortablelink('billed_at', trans('bills.bill_date')) |
@sortablelink('due_at', trans('bills.due_date')) |
@@ -52,7 +52,7 @@
{{ Form::bulkActionGroup($item->id, $item->bill_number) }} |
{{ $item->bill_number }} |
- {{ $item->contact_name }} |
+ {{ $item->contact_name }} |
@money($item->amount, $item->currency_code, true) |
@date($item->billed_at) |
@date($item->due_at) |
diff --git a/resources/views/sales/invoices/index.blade.php b/resources/views/sales/invoices/index.blade.php
index 7df0d157e..a44e86770 100644
--- a/resources/views/sales/invoices/index.blade.php
+++ b/resources/views/sales/invoices/index.blade.php
@@ -37,7 +37,7 @@
{{ 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('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')) |
@@ -52,7 +52,7 @@
{{ Form::bulkActionGroup($item->id, $item->invoice_number) }} |
{{ $item->invoice_number }} |
- {{ $item->contact_name }} |
+ {{ $item->contact_name }} |
@money($item->amount, $item->currency_code, true) |
@date($item->invoiced_at) |
@date($item->due_at) |