@extends('layout.default') @section('title', $L('Habits analysis')) @section('activeNav', 'habitsanalysis') @section('viewJsName', 'habitsanalysis') @section('content')

@yield('title')

@foreach($habitsLog as $habitLogEntry) @endforeach
{{ $L('Habit') }} {{ $L('Tracked time') }} {{ $L('Done by') }}
{{ FindObjectInArrayByPropertyValue($habits, 'id', $habitLogEntry->habit_id)->name }} {{ $habitLogEntry->tracked_time }} @if ($habitLogEntry->done_by_user_id !== null && !empty($habitLogEntry->done_by_user_id)) {{ GetUserDisplayName(FindObjectInArrayByPropertyValue($users, 'id', $habitLogEntry->done_by_user_id)) }} @else {{ $L('Unknown') }} @endif
@stop