@if(@count($tasks) > 0) @foreach($tasks as $task) @endforeach
@lang('lang.task') @lang('lang.status') @lang('lang.time_logged') @lang('lang.billed_time') @lang('lang.unbilled_time') @lang('lang.date_completed')
{{ str_limit($task->task_title, 50) }} {{ runtimeLang($task->status->taskstatus_title) }} @if(runtimeSecondsWholeHours($task->timeLogged) > 0) {{ runtimeSecondsWholeHours($task->timeLogged) }} @lang('lang.hrs') @endif {{ runtimeSecondsWholeMinutes($task->timeLogged) }} @lang('lang.mins') @if(runtimeSecondsWholeHours($task->timeBilled) > 0) {{ runtimeSecondsWholeHours($task->timeBilled) }} @lang('lang.hrs') @endif {{ runtimeSecondsWholeMinutes($task->timeBilled) }} @lang('lang.mins') @if(runtimeSecondsWholeHours($task->timeUnbilled) > 0) {{ runtimeSecondsWholeHours($task->timeUnbilled) }} @lang('lang.hrs') @endif {{ runtimeSecondsWholeMinutes($task->timeUnbilled) }} @lang('lang.mins') @if($task->task_status == 2) {{ runtimeDate($task->task_date_status_changed) }} @else --- @endif
@else @include('notifications.no-results-found') @endif