hidden classes updated
This commit is contained in:
16
resources/views/expenses/vendors/show.blade.php
vendored
16
resources/views/expenses/vendors/show.blade.php
vendored
@@ -117,8 +117,8 @@
|
||||
<tr class="row table-head-line">
|
||||
<th class="col-xs-6 col-sm-3">{{ trans('general.date') }}</th>
|
||||
<th class="col-xs-6 col-sm-2">{{ trans('general.amount') }}</th>
|
||||
<th class="col-sm-4 hidden-sm">{{ trans_choice('general.categories', 1) }}</th>
|
||||
<th class="col-sm-3 hidden-sm">{{ trans_choice('general.accounts', 1) }}</th>
|
||||
<th class="col-sm-4 d-none d-sm-none">{{ trans_choice('general.categories', 1) }}</th>
|
||||
<th class="col-sm-3 d-none d-sm-none">{{ trans_choice('general.accounts', 1) }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@@ -126,8 +126,8 @@
|
||||
<tr class="row align-items-center border-top-1">
|
||||
<td class="col-xs-6 col-sm-3">@date($item->paid_at)</td>
|
||||
<td class="col-xs-6 col-sm-2">@money($item->amount, $item->currency_code, true)</td>
|
||||
<td class="col-sm-4 hidden-sm">{{ $item->category ? $item->category->name : trans('general.na') }}</td>
|
||||
<td class="col-sm-3 hidden-sm">{{ $item->account->name }}</td>
|
||||
<td class="col-sm-4 d-none d-sm-none">{{ $item->category ? $item->category->name : trans('general.na') }}</td>
|
||||
<td class="col-sm-3 d-none d-sm-none">{{ $item->account->name }}</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
@@ -148,8 +148,8 @@
|
||||
<tr class="row table-head-line">
|
||||
<th class="col-xs-4 col-sm-3">{{ trans_choice('general.numbers', 1) }}</th>
|
||||
<th class="col-xs-4 col-sm-3">{{ trans('general.amount') }}</th>
|
||||
<th class="col-sm-2 hidden-sm">{{ trans('bills.bill_date') }}</th>
|
||||
<th class="col-sm-2 hidden-sm">{{ trans('bills.due_date') }}</th>
|
||||
<th class="col-sm-2 d-none d-sm-none">{{ trans('bills.bill_date') }}</th>
|
||||
<th class="col-sm-2 d-none d-sm-none">{{ trans('bills.due_date') }}</th>
|
||||
<th class="col-xs-4 col-sm-2">{{ trans_choice('general.statuses', 1) }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@@ -158,8 +158,8 @@
|
||||
<tr class="row align-items-center border-top-1">
|
||||
<td class="col-xs-4 col-sm-3"><a href="{{ url('expenses/bills/' . $item->id . ' ') }}">{{ $item->bill_number }}</a></td>
|
||||
<td class="col-xs-4 col-sm-3">@money($item->amount, $item->currency_code, true)</td>
|
||||
<td class="col-sm-2 hidden-sm">@date($item->billed_at)</td>
|
||||
<td class="col-sm-2 hidden-sm">@date($item->due_at)</td>
|
||||
<td class="col-sm-2 d-none d-sm-none">@date($item->billed_at)</td>
|
||||
<td class="col-sm-2 d-none d-sm-none">@date($item->due_at)</td>
|
||||
<td class="col-xs-4 col-sm-2"><span class="badge badge-pill badge-{{ $item->status->label }}">{{ trans('bills.status.' . $item->status->code) }}</span></td>
|
||||
</tr>
|
||||
@endforeach
|
||||
|
||||
Reference in New Issue
Block a user