@php require_frontend_packages(['datatables', 'animatecss']); @endphp @extends('layout.default') @section('title', $__t('Chores overview')) @section('content')
@if(GROCY_FEATURE_FLAG_CHORES_ASSIGNMENTS)
@endif
 {{ $__t('Status') }}
@if(GROCY_FEATURE_FLAG_CHORES_ASSIGNMENTS)
 {{ $__t('Assignment') }}
@endif
@include('components.userfields_thead', array( 'userfields' => $userfields )) @foreach($currentChores as $curentChoreEntry) @endif @include('components.userfields_tbody', array( 'userfields' => $userfields, 'userfieldValues' => FindAllObjectsInArrayByPropertyValue($userfieldValues, 'object_id', $curentChoreEntry->chore_id) )) @endforeach
{{ $__t('Chore') }} {{ $__t('Next estimated tracking') }} {{ $__t('Last tracked') }} {{ $__t('Assigned to') }} Hidden status Hidden assigned to user id
@if(!empty($curentChoreEntry->next_estimated_execution_time)) {{ $curentChoreEntry->next_estimated_execution_time }} @else - @endif @if($curentChoreEntry->is_rescheduled == 1) @endif @if(!empty($curentChoreEntry->last_tracked_time)) {{ $curentChoreEntry->last_tracked_time }} @else - @endif @if(!empty($curentChoreEntry->next_execution_assigned_to_user_id)) {{ FindObjectInArrayByPropertyValue($users, 'id', $curentChoreEntry->next_execution_assigned_to_user_id)->display_name }} @else - @endif @if($curentChoreEntry->is_reassigned == 1) @endif {{ $curentChoreEntry->due_type }} @if($curentChoreEntry->due_type == 'duetoday') duesoon @endif @if(!empty($curentChoreEntry->next_execution_assigned_to_user_id)) xx{{ $curentChoreEntry->next_execution_assigned_to_user_id }}xx
@include('components.chorecard', [ 'asModal' => true ]) @stop