{{-- Solutioning Tab --}}
{{-- Interim Mitigation --}}

Threat Interim Mitigation

{{-- Interim Lead Person --}}
@php $config = ['placeholder' => 'Select Interim Lead Person', 'allowClear' => false]; @endphp Interim Lead Person * @foreach ($userOptions as $key => $label) @endforeach
{{-- Original Resolution Date (Interim) --}}
@php $config = ['format' => 'DD-MM-YYYY']; @endphp Original Resolution Date (Interim) *
{{-- Interim Plan --}}
{!! html()->label('Interim Plan *', 'interim_plan') !!} {!! html()->textarea('interim_plan', $threat->solutioningTab->interim_plan ?? '')->class('form-control')->rows(5)->placeholder('Enter Text ...')->required() !!}
{{-- Long Term Solution --}}

Threat Long Term Solution

{{-- In Business Plan --}}
{!! html()->label('In Business Plan', 'in_business_plan') !!}
{!! html()->hidden('in_business_plan', 0) !!} solutioningTab && $threat->solutioningTab->in_business_plan == 1) checked @endif>
{{-- In T/A Scope --}}
{!! html()->label('In T/A Scope', 'in_ta_scope') !!}
solutioningTab && $threat->solutioningTab->in_ta_scope == 1) checked @endif>
{{-- Turnaround Required --}}
{!! html()->label('Turnaround Required', 'turnaround_required') !!}
{!! html()->hidden('turnaround_required', 0) !!} solutioningTab && $threat->solutioningTab->turnaround_required == 1) checked @endif>
{{-- Total OpEx ($) --}}
{!! html()->label('Total OpEx ($)', 'total_OpEx_dollar') !!} {!! html()->text( 'total_OpEx_dollar', $threat->solutioningTab && $threat->solutioningTab->total_OpEx_dollar ? currency_format($threat->solutioningTab->total_OpEx_dollar) : '', )->class('form-control')->required() !!}
{{-- Original Resolution Date --}}
@php $config = ['format' => 'DD-MM-YYYY']; @endphp Original Resolution Date *
{{-- MOC No --}}
{!! html()->label('MOC No', 'MOC_number') !!} {!! html()->text('MOC_number', $threat->solutioningTab->MOC_number ?? '')->class('form-control')->required() !!}
{{-- Description of Solution Intended --}}
{!! html()->label('Description of Solution Intended', 'description_of_solution_identified') !!} {!! html()->textarea('description_of_solution_identified', $threat->solutioningTab->description_of_solution_identified ?? '')->class('form-control')->rows(5)->placeholder('Enter Text ...')->required() !!}
{{-- Description of Cause --}}
{!! html()->label('Description of Cause', 'description_of_cause') !!} {!! html()->textarea( 'description_of_cause', old( 'description_of_cause', $threat->solutioningTab->description_of_cause ?? "What do we think caused the problem?\nWhat evidence do we have about the cause?", ), )->class('form-control')->rows(5)->placeholder('Enter Text ...') !!}
{{-- Threat Actions --}}

Threat Actions

{{-- Included threat actions list --}} @include('backend.threat_actions.list-threatActions', [ 'source' => 'threat-details', 'threat_id' => $threat->id, ])
@push('js') @endpush