@include('timesheet::timesheet.partial.header')
@include('timesheet::timesheet.partial.aside')
{{$timesheet->title}}

{!! $timesheet['id'] !!}

{!! $timesheet['user_id'] !!}

{!! $timesheet['user_type'] !!}

{!! $timesheet['candidate_id'] !!}

{!! $timesheet['client_id'] !!}

{!! $timesheet['unit_id'] !!}

{!! $timesheet['job_id'] !!}

{!! $timesheet['status'] !!}

{!! $timesheet['shift_date'] !!}

{!! $timesheet['start_time'] !!}

{!! $timesheet['end_time'] !!}

{!! $timesheet['break'] !!}

{!! $timesheet['total_hours'] !!}

{!! $timesheet['total_cost'] !!}

{!! $timesheet['details'] !!}

{!! $timesheet['created_at'] !!}

{!! $timesheet['updated_at'] !!}

{!! $timesheet['deleted_at'] !!}
{!! Form::select('candidate_id') -> options(trans('timesheet::timesheet.options.candidate_id')) -> label(trans('timesheet::timesheet.label.candidate_id')) -> placeholder(trans('timesheet::timesheet.placeholder.candidate_id'))!!}
{!! Form::select('client_id') -> options(trans('timesheet::timesheet.options.client_id')) -> label(trans('timesheet::timesheet.label.client_id')) -> placeholder(trans('timesheet::timesheet.placeholder.client_id'))!!}
{!! Form::select('unit_id') -> options(trans('timesheet::timesheet.options.unit_id')) -> label(trans('timesheet::timesheet.label.unit_id')) -> placeholder(trans('timesheet::timesheet.placeholder.unit_id'))!!}
{!! Form::select('job_id') -> options(trans('timesheet::timesheet.options.job_id')) -> label(trans('timesheet::timesheet.label.job_id')) -> placeholder(trans('timesheet::timesheet.placeholder.job_id'))!!}
{!! Form::text('shift_date') -> placeholder(trans('timesheet::timesheet.placeholder.shift_date')) ->raw()!!}
{!! Form::text('start_time') -> placeholder(trans('timesheet::timesheet.placeholder.start_time')) -> raw()!!}
{!! Form::text('end_time') -> placeholder(trans('timesheet::timesheet.placeholder.end_time')) -> raw()!!}
{!! Form::text('break') -> placeholder(trans('timesheet::timesheet.placeholder.break')) -> raw()!!}
{!! Form::text('total_hours') -> label(trans('timesheet::timesheet.label.total_hours')) -> placeholder(trans('timesheet::timesheet.placeholder.total_hours'))!!}
{!! Form::text('total_cost') -> label(trans('timesheet::timesheet.label.total_cost')) -> placeholder(trans('timesheet::timesheet.placeholder.total_cost'))!!}
{!! Form::textarea ('details') -> label(trans('timesheet::timesheet.label.details')) -> placeholder(trans('timesheet::timesheet.placeholder.details'))!!}