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

@yield('title')

@foreach($currentChores as $curentChoreEntry) @endforeach
# {{ $L('Chore') }} {{ $L('Next estimated tracking') }} {{ $L('Last tracked') }}
{{ FindObjectInArrayByPropertyValue($chores, 'id', $curentChoreEntry->chore_id)->name }} @if(FindObjectInArrayByPropertyValue($chores, 'id', $curentChoreEntry->chore_id)->period_type === \Grocy\Services\ChoresService::CHORE_TYPE_DYNAMIC_REGULAR) {{ $curentChoreEntry->next_estimated_execution_time }} @else ... @endif {{ $curentChoreEntry->last_tracked_time }}
@stop