{{ csrf_field() }}
Name
{{ $task->name }}
IN/OUT
{{ $task->in_out }}
Task Type
{{ $task->task_types['name'] }}
Priority
{{ $task->priority }}
Descripton
{{ $task->description }}
Assigned Staffs
@foreach($employees as $employee) @endforeach
Status
Select
@foreach($task_statuses->whereNotIn('id',[3,8,9,10]) as $task_status)
status == $task_status->id)? 'selected':''}} >{{ $task_status->name }}
@endforeach
Progress
{{ $task->progress? $task->progress : 0 }}
%