mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Test for date.
This commit is contained in:
parent
8d9561d7a5
commit
c43439bb68
@ -8,7 +8,7 @@
|
||||
@endif
|
||||
<th>Current balance</th>
|
||||
<th>Active</th>
|
||||
<th data-dateformat="D MMMM 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>
|
||||
<td data-value="{{$account->lastActivityDate->format('Y-m-d')}}">
|
||||
{{{$account->lastActivityDate->format('j F Y')}}}
|
||||
</td>
|
||||
@else
|
||||
|
@ -3,7 +3,7 @@
|
||||
<tr>
|
||||
<th data-defaultsort="disabled"> </th>
|
||||
<th>Name</th>
|
||||
<th data-dateformat="DD-MM-YYYY">Last activity</th>
|
||||
<th data-dateformat="YYYY-MM-DD">Last activity</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -24,7 +24,7 @@
|
||||
<a href="{{route('categories.show',$category->id)}}" title="{{{$category->name}}}">{{{$category->name}}}</a>
|
||||
</td>
|
||||
@if($category->lastActivity)
|
||||
<td data-value="{{$category->lastActivity->format('d-m-Y')}}">
|
||||
<td data-value="{{$category->lastActivity->format('Y-m-d')}}">
|
||||
{{$category->lastActivity->format('jS F Y')}}
|
||||
</td>
|
||||
@else
|
||||
|
Loading…
Reference in New Issue
Block a user