@extends('layout.default') @section('title', $L('Chores overview')) @section('activeNav', 'choresoverview') @section('viewJsName', 'choresoverview') @push('pageScripts') @endpush @section('content')

@yield('title') {{ $L('Journal') }}

@foreach($currentChores as $curentChoreEntry) @endforeach
{{ $L('Chore') }} {{ $L('Next estimated tracking') }} {{ $L('Last tracked') }} Hidden status
@if(FindObjectInArrayByPropertyValue($chores, 'id', $curentChoreEntry->chore_id)->period_type !== \Grocy\Services\ChoresService::CHORE_TYPE_MANUALLY) {{ $curentChoreEntry->next_estimated_execution_time }} @else ... @endif {{ $curentChoreEntry->last_tracked_time }} @if(FindObjectInArrayByPropertyValue($chores, 'id', $curentChoreEntry->chore_id)->period_type !== \Grocy\Services\ChoresService::CHORE_TYPE_MANUALLY && $curentChoreEntry->next_estimated_execution_time < date('Y-m-d H:i:s')) overdue @elseif(FindObjectInArrayByPropertyValue($chores, 'id', $curentChoreEntry->chore_id)->period_type !== \Grocy\Services\ChoresService::CHORE_TYPE_MANUALLY && $curentChoreEntry->next_estimated_execution_time < date('Y-m-d H:i:s', strtotime("+$nextXDays days"))) duesoon @endif
@stop