@if($taskStatusForm->task->getRawOriginal('status') == 1)

You Are About to Perform an Irreversible Action

For security reasons, this requires you to confirm your decision. Please note that once you [Remove / Complete / Terminate], this action cannot be undone.
Make sure you have provided a valid reason before proceeding.

  • 🔹 Remove: This will permanently delete the item.
  • 🔹 Complete: This will mark the item as finished and lock further changes.
  • 🔹 Terminate: This will end the process immediately.
@can('complete scrumboard task')
@endcan @can('terminate scrumboard task')
@endcan @can('delete scrumboard task')
@endcan @error('taskStatusForm.status') {{ $message }} @enderror
@error('taskStatusForm.reason') {{ $message }} @enderror
{{-- save button --}}
@else

The Task is locked For Further Changes

The task is not editable anymore. You can only view the task details.
The following action is performend on the task:

  • 🔹 Status: @include('scrumboard::scrum-boards.status-column', ['task' => $taskStatusForm->task])
  • 🔹 Performed By: @include('admin._partials.sections.user-info', ['user' => $taskStatusForm->task->statusUpdatedByAdmin])
  • 🔹 Performed At: {{ $taskStatusForm->task->status_updated_at?->format('d M Y') }}
  • @if($taskStatusForm->task->status_update_reason)
  • 🔹 Reason: {{ $taskStatusForm->task->status_update_reason }}
  • @endif
@endif