@extends('layout.default') @section('title', $L('Chores journal')) @section('activeNav', 'choresjournal') @section('viewJsName', 'choresjournal') @section('content')

@yield('title')

@foreach($choresLog as $choreLogEntry) @endforeach
# {{ $L('Chore') }} {{ $L('Tracked time') }} {{ $L('Done by') }}
{{ FindObjectInArrayByPropertyValue($chores, 'id', $choreLogEntry->chore_id)->name }} @if($choreLogEntry->undone == 1)
{{ $L('Undone on') . ' ' . $choreLogEntry->undone_timestamp }} @endif
{{ $choreLogEntry->tracked_time }} @if ($choreLogEntry->done_by_user_id !== null && !empty($choreLogEntry->done_by_user_id)) {{ GetUserDisplayName(FindObjectInArrayByPropertyValue($users, 'id', $choreLogEntry->done_by_user_id)) }} @else {{ $L('Unknown') }} @endif
@stop