mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-19 19:01:58 +00:00
Test for date.
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
@endif
|
@endif
|
||||||
<th>Current balance</th>
|
<th>Current balance</th>
|
||||||
<th>Active</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>
|
<th>Balance difference between {{Session::get('start')->format('jS F Y')}} and {{Session::get('end')->format('jS F Y')}}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@@ -41,7 +41,7 @@
|
|||||||
@endif
|
@endif
|
||||||
</td>
|
</td>
|
||||||
@if($account->lastActivityDate)
|
@if($account->lastActivityDate)
|
||||||
<td>
|
<td data-value="{{$account->lastActivityDate->format('Y-m-d')}}">
|
||||||
{{{$account->lastActivityDate->format('j F Y')}}}
|
{{{$account->lastActivityDate->format('j F Y')}}}
|
||||||
</td>
|
</td>
|
||||||
@else
|
@else
|
||||||
|
@@ -3,7 +3,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th data-defaultsort="disabled"> </th>
|
<th data-defaultsort="disabled"> </th>
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
<th data-dateformat="DD-MM-YYYY">Last activity</th>
|
<th data-dateformat="YYYY-MM-DD">Last activity</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
<a href="{{route('categories.show',$category->id)}}" title="{{{$category->name}}}">{{{$category->name}}}</a>
|
<a href="{{route('categories.show',$category->id)}}" title="{{{$category->name}}}">{{{$category->name}}}</a>
|
||||||
</td>
|
</td>
|
||||||
@if($category->lastActivity)
|
@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')}}
|
{{$category->lastActivity->format('jS F Y')}}
|
||||||
</td>
|
</td>
|
||||||
@else
|
@else
|
||||||
|
Reference in New Issue
Block a user