@if(config('visibility.timesheets_col_checkboxes'))
|
timer_billing_status == 'invoiced') disabled @endif>
|
@endif
@if(config('visibility.timesheets_grouped_by_users'))
{{ cleanLang(__('lang.multiple')) }}
@else
{{ str_limit($timesheet->first_name ?? runtimeUnkownUser(), 10) }}
{{ $timesheet->first_name ?? runtimeUnkownUser() }} {{ $timesheet->last_name ?? '' }}
@endif
|
{{ str_limit($timesheet->task_title ?? '---', 25) }}
|
@if(config('visibility.timesheets_col_related'))
@if($timesheet->timer_projectid > 0)
{{ str_limit($timesheet->project_title ?? '---', 25) }}
@else
{{ str_limit($timesheet->lead_title ?? '---', 25) }}
@endif
|
@endif
@if(config('visibility.timesheets_col_recorded_by'))
{{ $timesheet->recorded_by }} |
@endif
{{ runtimeDate($timesheet->timer_created) }} |
@if(config('visibility.timesheets_col_start_time'))
{{ runtimeTime($timesheet->timer_created) }} |
@endif
@if(request('filter_grouping') == 'none' || !request()->filled('filter_grouping'))
@if($timesheet->timer_billing_status == 'invoiced')
{{ cleanLang(__('lang.invoiced')) }}
@else
{{ cleanLang(__('lang.not_invoiced')) }}
@endif
@else
---
@endif
|
{!! clean(runtimeSecondsHumanReadable($timesheet->time, true)) !!} |
@if(config('visibility.timesheets_col_action'))
@if(config('visibility.timesheets_disable_actions'))
---
@else
@if(config('visibility.action_buttons_delete'))
@if($timesheet->timer_billing_status == 'invoiced')
@else
@endif
@endif
@if(config('visibility.action_buttons_edit'))
@endif
@if($timesheet->timer_billing_status == 'invoiced')
@endif
@endif
|
@endif
@endforeach