Remove superfluous meta from finished trips
This commit is contained in:
parent
3c03aeaabc
commit
9a000fb08e
1 changed files with 2 additions and 0 deletions
|
@ -28,7 +28,9 @@
|
|||
<p>
|
||||
<span> Tracking started: {{ date('j M Y (G:H)', strtotime($trip->date_start)) }}</span> |
|
||||
<span class="{{ ($trip->is_active) ? "positive" : "negative" }}">{{ ($trip->is_active) ? "Active" : "Ended" }}</span> |
|
||||
@if ($trip->is_active)
|
||||
<span class="{{ ($trip->is_tracking) ? "positive" : "negative" }}">{{ ($trip->is_tracking) ? "Currently tracking" : "Not currently tracking" }}</span>
|
||||
@endif
|
||||
<span class="small">(Last update: {{ date('j M Y (G:H)', strtotime($trip->updated_at)) }})</span>
|
||||
</p>
|
||||
</section>
|
||||
|
|
Loading…
Reference in a new issue