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

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

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

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

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

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

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

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

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

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

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

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

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

{!! $timesheet['updated_at'] !!}
{!! Form::select('task_id') -> options(trans('timesheet::timesheet.options.task_id')) -> label(trans('timesheet::timesheet.label.task_id')) -> placeholder(trans('timesheet::timesheet.placeholder.task_id'))!!}
{!! Form::select('project_id') -> options(trans('timesheet::timesheet.options.project_id')) -> label(trans('timesheet::timesheet.label.project_id')) -> placeholder(trans('timesheet::timesheet.placeholder.project_id'))!!}
{!! Form::text('date') -> placeholder(trans('timesheet::timesheet.placeholder.date')) ->raw()!!}
{!! Form::text('time_start') -> placeholder(trans('timesheet::timesheet.placeholder.time_start')) -> addClass('pickdatetime') ->raw()!!}
{!! Form::text('time_end') -> placeholder(trans('timesheet::timesheet.placeholder.time_end')) -> addClass('pickdatetime') ->raw()!!}
{!! Form::text('duration') -> placeholder(trans('timesheet::timesheet.placeholder.duration')) -> raw()!!}
{!! Form::numeric('percentage') -> label(trans('timesheet::timesheet.label.percentage')) -> placeholder(trans('timesheet::timesheet.placeholder.percentage'))!!}
{!! Form::text('description') -> label(trans('timesheet::timesheet.label.description')) -> placeholder(trans('timesheet::timesheet.placeholder.description'))!!}