Switched dates around.

This commit is contained in:
James Cole 2015-04-11 15:07:42 +02:00
parent b53aaf7dde
commit 967b0b493b

View File

@ -8,7 +8,7 @@
@endif
<th>Current balance</th>
<th>Active</th>
<th data-dateformat="DD-MM-YYYY">Last activity</th>
<th data-dateformat="YYYY-MM-DD">Last activity</th>
<th>Balance difference between {{Session::get('start')->format('jS F Y')}} and {{Session::get('end')->format('jS F Y')}}</th>
</tr>
</thead>
@ -41,7 +41,7 @@
@endif
</td>
@if($account->lastActivityDate)
<td data-value="{{$account->lastActivityDate->format('d-m-Y')}}">
<td data-value="{{$account->lastActivityDate->format('Y-m-d')}}">
{{{$account->lastActivityDate->format('j F Y')}}}
</td>
@else