@lang('modules.tasks.updateTask')
@csrf @method('PUT')
@lang('app.title')
@lang('app.description')
{{ $task->description }}
{{--
is_private) checked @endif type="checkbox">
@lang('modules.tasks.makePrivate')
@lang('modules.tasks.privateInfo')
--}}
{{--
billable) checked @endif type="checkbox">
@lang('modules.tasks.billable')
@lang('modules.tasks.billableInfo')
--}}
billable==\App\Task::BILLABLE_TASK ? 'checked' : ''}}>
@lang('modules.tasks.billable')
billable==\App\Task::NON_BILLABLE_TASK ? 'checked' : ''}}>
@lang('modules.tasks.nonBillable')
{{--
billable==\App\Task::MAINTENANCE_TASK ? 'checked' : ''}}>
@lang('modules.tasks.maintenance')
--}}
estimate_hours > 0 || $task->estimate_minutes > 0) checked onclick="return false;" @endif name="set_time_estimate" value="true" type="checkbox">
@lang('modules.tasks.setTimeEstimate')
estimate_hours == 0 && $task->estimate_minutes == 0) style="display: none" @endif>
@lang('app.hrs')
@lang('app.mins')
dependent_task_id != '') checked @endif onclick="dependedSelected(this)">
@lang('modules.tasks.dependent')
dependent_task_id == null) style="display: none" @endif>
@lang('modules.tasks.dependentTask')
@foreach($allTasks as $allTask)
id == $task->dependent_task_id) selected @endif>{{ $allTask->heading }} (@lang('app.dueDate'): {{ \Carbon\Carbon::parse($allTask->due_date)->format($global->date_format) }})
@endforeach
@lang('app.taskLabel')
@foreach($taskLabels as $label)
id,$currentLabels) ? 'selected' :''}} > {{ $label->label_name }}
@endforeach
@lang('app.startDate')
@lang('app.dueDate')
@lang('modules.projects.milestones')
--
@foreach($task->project->milestones as $milestone)
id == $task->milestone_id) selected @endif value="{{ $milestone->id }}">{{ $milestone->milestone_title }}
@endforeach
@lang('modules.tasks.assignTo')
@if(is_null($task->project_id)) @foreach($employees as $employee) @php $selected = ''; @endphp @foreach ($task->users as $item) @if($item->id == $employee->id) @php $selected = 'selected'; @endphp @endif @endforeach
{{ ucwords($employee->name) }}
@endforeach @else @foreach($task->project->members as $member) @php $selected = ''; @endphp @foreach ($task->users as $item) @if($item->id == $member->user->id) @php $selected = 'selected'; @endphp @endif @endforeach
{{ $member->user->name }}
@endforeach @endif
@lang('modules.tasks.taskCategory')
@lang('modules.taskCategory.addTaskCategory')
@forelse($categories as $category)
task_category_id == $category->id) selected @endif >{{ ucwords($category->category_name) }}
@empty
@lang('messages.noTaskCategoryAdded')
@endforelse
@lang('app.status')
@foreach($taskBoardColumns as $taskBoardColumn)
board_column_id == $taskBoardColumn->id) selected @endif value="{{$taskBoardColumn->id}}">{{ $taskBoardColumn->column_name }}
@endforeach
@lang('modules.tasks.priority')
priority == 'high') checked @endif value="high">
@lang('modules.tasks.high')
priority == 'medium') checked @endif id="radio14" value="medium">
@lang('modules.tasks.medium')
priority == 'low') checked @endif value="low">
@lang('modules.tasks.low')
@lang('app.save')
{{--Ajax Modal--}}
Loading...
.
{{--Ajax Modal Ends--}}