@extends('layout.default') @section('title', $L('Chores analysis')) @section('activeNav', 'choresanalysis') @section('viewJsName', 'choresanalysis') @section('content')
{{ $L('Chore') }} | {{ $L('Tracked time') }} | {{ $L('Done by') }} |
---|---|---|
{{ FindObjectInArrayByPropertyValue($chores, 'id', $choreLogEntry->chore_id)->name }} | {{ $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 |