diff --git a/resources/views/purchases/bills/index.blade.php b/resources/views/purchases/bills/index.blade.php index a4a75a005..cadf622af 100644 --- a/resources/views/purchases/bills/index.blade.php +++ b/resources/views/purchases/bills/index.blade.php @@ -39,8 +39,8 @@ @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('amount', trans('general.amount')) - @sortablelink('billed_at', trans('bills.bill_date')) - @sortablelink('due_at', trans('bills.due_date')) + @sortablelink('billed_at', trans('bills.bill_date')) + @sortablelink('due_at', trans('bills.due_date')) @sortablelink('status', trans_choice('general.statuses', 1)) {{ trans('general.actions') }} @@ -54,8 +54,8 @@ {{ $item->bill_number }} {{ $item->contact_name }} @money($item->amount, $item->currency_code, true) - @date($item->billed_at) - @date($item->due_at) + @date($item->billed_at) + @date($item->due_at) {{ trans('bills.statuses.' . $item->status) }} diff --git a/resources/views/sales/invoices/index.blade.php b/resources/views/sales/invoices/index.blade.php index 25f29736a..512481eac 100644 --- a/resources/views/sales/invoices/index.blade.php +++ b/resources/views/sales/invoices/index.blade.php @@ -39,8 +39,8 @@ @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')) + @sortablelink('invoiced_at', trans('invoices.invoice_date')) + @sortablelink('due_at', trans('invoices.due_date')) @sortablelink('status', trans_choice('general.statuses', 1)) {{ trans('general.actions') }} @@ -54,8 +54,8 @@ {{ $item->invoice_number }} {{ $item->contact_name }} @money($item->amount, $item->currency_code, true) - @date($item->invoiced_at) - @date($item->due_at) + @date($item->invoiced_at) + @date($item->due_at) {{ trans('invoices.statuses.' . $item->status) }} diff --git a/resources/views/sales/revenues/index.blade.php b/resources/views/sales/revenues/index.blade.php index cf54f6748..ee9359e16 100644 --- a/resources/views/sales/revenues/index.blade.php +++ b/resources/views/sales/revenues/index.blade.php @@ -36,9 +36,9 @@ {{ Form::bulkActionAllGroup() }} - @sortablelink('paid_at', trans('general.date'), ['filter' => 'active, visible'], ['class' => 'col-aka', 'rel' => 'nofollow']) + @sortablelink('paid_at', trans('general.date'), ['filter' => 'active, visible'], ['class' => 'col-aka', 'rel' => 'nofollow']) @sortablelink('amount', trans('general.amount')) - @sortablelink('contact.name', trans_choice('general.customers', 1)) + @sortablelink('contact.name', trans_choice('general.customers', 1)) @sortablelink('category.name', trans_choice('general.categories', 1)) @sortablelink('account.name', trans_choice('general.accounts', 1)) {{ trans('general.actions') }} @@ -50,12 +50,12 @@ {{ Form::bulkActionGroup($item->id, $item->contact->name) }} @if ($item->reconciled) - @date($item->paid_at) + @date($item->paid_at) @else - @date($item->paid_at) + @date($item->paid_at) @endif @money($item->amount, $item->currency_code, true) - {{ $item->contact->name }} + {{ $item->contact->name }} {{ $item->category->name }} {{ $item->account->name }}