@foreach($tasks as $task)
|
|
{{ 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
|
@endforeach