@php $date_format = get_company_option('date_format','Y-m-d'); @endphp @php $time_format = get_company_option('time_format',24) == '24' ? 'H:i' : 'h:i A'; @endphp
| {{ _lang('User') }} | {{ $timesheet->user->name }} |
| {{ _lang('Task') }} | {{ $timesheet->task->title }} |
| {{ _lang('Start Time') }} | {{ date("$date_format $time_format",strtotime($timesheet->start_time)) }} |
| {{ _lang('End Time') }} | {{ date("$date_format $time_format",strtotime($timesheet->end_time)) }} |
| {{ _lang('Total Hours') }} | {{ $timesheet->total_hour }} |
| {{ _lang('Note') }} | {{ $timesheet->note }} |