fixed #284
This commit is contained in:
		@@ -35,7 +35,7 @@
 | 
			
		||||
                <thead>
 | 
			
		||||
                    <tr>
 | 
			
		||||
                        <th class="col-md-2">@sortablelink('paid_at', trans('general.date'))</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>
 | 
			
		||||
                        <th class="col-md-3 hidden-xs">@sortablelink('customer.name', trans_choice('general.customers', 1))</th>
 | 
			
		||||
                        <th class="col-md-2 hidden-xs">@sortablelink('category.name', trans_choice('general.categories', 1))</th>
 | 
			
		||||
                        <th class="col-md-2 hidden-xs">@sortablelink('account.name', trans_choice('general.accounts', 1))</th>
 | 
			
		||||
@@ -46,7 +46,7 @@
 | 
			
		||||
                @foreach($revenues as $item)
 | 
			
		||||
                    <tr>
 | 
			
		||||
                        <td><a href="{{ url('incomes/revenues/' . $item->id . '/edit') }}">{{ Date::parse($item->paid_at)->format($date_format) }}</a></td>
 | 
			
		||||
                        <td>@money($item->amount, $item->currency_code, true)</td>
 | 
			
		||||
                        <td class="text-right amount-space">@money($item->amount, $item->currency_code, true)</td>
 | 
			
		||||
                        <td class="hidden-xs">{{ !empty($item->customer->name) ? $item->customer->name : trans('general.na') }}</td>
 | 
			
		||||
                        <td class="hidden-xs">{{ $item->category->name }}</td>
 | 
			
		||||
                        <td class="hidden-xs">{{ $item->account->name }}</td>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user