This commit is contained in:
denisdulici
2018-03-30 17:46:50 +03:00
parent 778006d2a4
commit a57f446d92
11 changed files with 32 additions and 26 deletions

View File

@@ -33,7 +33,7 @@
<tr>
<th class="col-md-4">@sortablelink('name', trans('general.name'))</th>
<th class="col-md-3 hidden-xs">@sortablelink('number', trans('accounts.number'))</th>
<th class="col-md-3">@sortablelink('opening_balance', trans('accounts.current_balance'))</th>
<th class="col-md-3 text-right amount-space">@sortablelink('opening_balance', trans('accounts.current_balance'))</th>
<th class="col-md-1 hidden-xs">@sortablelink('enabled', trans_choice('general.statuses', 1))</th>
<th class="col-md-1 text-center">{{ trans('general.actions') }}</th>
</tr>
@@ -43,7 +43,7 @@
<tr>
<td><a href="{{ url('banking/accounts/' . $item->id . '/edit') }}">{{ $item->name }}</a></td>
<td class="hidden-xs">{{ $item->number }}</td>
<td>@money($item->balance, $item->currency_code, true)</td>
<td class="text-right amount-space">@money($item->balance, $item->currency_code, true)</td>
<td class="hidden-xs">
@if ($item->enabled)
<span class="label label-success">{{ trans('general.enabled') }}</span>

View File

@@ -32,7 +32,7 @@
<th class="col-md-2">@sortablelink('type', trans_choice('general.types', 1))</th>
<th class="col-md-2">@sortablelink('category_name', trans_choice('general.categories', 1))</th>
<th class="col-md-2">@sortablelink('description', trans('general.description'))</th>
<th class="col-md-2">@sortablelink('amount', trans('general.amount'))</th>
<th class="col-md-2 text-right amount-space">@sortablelink('amount', trans('general.amount'))</th>
</tr>
</thead>
<tbody>
@@ -43,7 +43,7 @@
<td>{{ $item->type }}</td>
<td>{{ $item->category_name }}</td>
<td>{{ $item->description }}</td>
<td>@money($item->amount, $item->currency_code, true)</td>
<td class="text-right amount-space">@money($item->amount, $item->currency_code, true)</td>
</tr>
@endforeach
</tbody>

View File

@@ -35,7 +35,7 @@
<th class="col-md-3">@sortablelink('payment.paid_at', trans('general.date'))</th>
<th class="col-md-3">@sortablelink('payment.name', trans('transfers.from_account'))</th>
<th class="col-md-3">@sortablelink('revenue.name', trans('transfers.to_account'))</th>
<th class="col-md-3">@sortablelink('payment.amount', trans('general.amount'))</th>
<th class="col-md-3 text-right amount-space">@sortablelink('payment.amount', trans('general.amount'))</th>
</tr>
</thead>
<tbody>
@@ -44,7 +44,7 @@
<td>{{ Date::parse($item->paid_at)->format($date_format) }}</td>
<td>{{ $item->from_account }}</td>
<td>{{ $item->to_account }}</td>
<td>@money($item->amount, $item->currency_code, true)</td>
<td class="text-right amount-space">@money($item->amount, $item->currency_code, true)</td>
</tr>
@endforeach
</tbody>