|
@if ($task->done == 0)
@else
@endif
|
{{ $task->name }}
|
{{ $task->due_date }}
|
@if ($task->category_id != null)
{{ FindObjectInArrayByPropertyValue($taskCategories, 'id', $task->category_id)->name }}
@else
{{ $__t('Uncategorized') }}
@endif
|
@if ($task->assigned_to_user_id != null)
{{ GetUserDisplayName(FindObjectInArrayByPropertyValue($users, 'id', $task->assigned_to_user_id)) }}
@endif
|
{{ $task->due_type }}
@if ($task->due_type == 'duetoday')
duesoon
@endif
|
@if ($task->category_id != null)
{{ FindObjectInArrayByPropertyValue($taskCategories, 'id', $task->category_id)->name }}
@else
{{ $__t('Uncategorized') }}
@endif
|
@include('components.userfields_tbody', [
'userfields' => $userfields,
'userfieldValues' => FindAllObjectsInArrayByPropertyValue(
$userfieldValues,
'object_id',
$task->id
),
])
@endforeach