{{-- Solutioning Tab --}}
{{-- Interim Mitigation --}} {{-- Long Term Solution --}}

Opportunity Long Term Solution

{{-- 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() !!}
{{-- Long term solution may require capital --}}
{!! html()->label('Long term solution may require apex', 'long_term_solution_may_required_capital') !!}
{!! html()->hidden('long_term_solution_may_required_capital', 0) !!} solutioningTab && $threat->solutioningTab->long_term_solution_may_required_capital == 1) checked @endif>
{{-- 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 ...') !!}
{{-- Total OpEx USD --}}
{!! html()->label('Total OpEx USD', 'total_OpEx_USD') !!} {!! html()->text('total_OpEx_USD', $threat->solutioningTab ? currency_format($threat->solutioningTab->total_OpEx_USD) : 0)->class('form-control') !!}
{{-- Total Capital USD --}}
{!! html()->label('Total Capital USD', 'total_capital_USD') !!} {!! html()->text( 'total_capital_USD', $threat->solutioningTab ? currency_format($threat->solutioningTab->total_capital_USD) : 0, )->class('form-control') !!}
{{-- Action item tracked in Business Plan --}}
{!! html()->label('Action item tracked in Business Plan', 'action_item_tracked_in') !!} {!! html()->select( 'action_item_tracked_in', [ 'AMP' => 'AMP', 'Project Identifier' => 'Project Identifier', 'RADAR/SONAR' => 'RADAR/SONAR', 'Other' => 'Other', ], $threat->solutioningTab ? $threat->solutioningTab->action_item_tracked_in : '', )->class('form-control custom-select')->attributes(['id' => 'action_item_tracked_in']) !!}
{{-- Business Plan Static Status --}}
{!! html()->label('Business Plan Static Status', 'business_plan_tactic_status') !!} {!! html()->select( 'business_plan_tactic_status', [ '' => 'Select...', 'Committed' => 'Committed', 'Completed' => 'Completed', 'Launched' => 'Launched', 'Planned' => 'Planned', ], $threat->solutioningTab->business_plan_tactic_status ?? '', )->class('form-control custom-select') !!}
{{-- 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') !!}
{!! html()->hidden('in_ta_scope', 0) !!} solutioningTab && $threat->solutioningTab->in_ta_scope == 1) checked @endif>
{{-- % Complete --}}
{!! html()->label('% Complete', 'percent_complete') !!} {!! html()->text( 'percent_complete', $threat->solutioningTab && $threat->solutioningTab->percent_complete !== null ? $threat->solutioningTab->percent_complete : '0', )->class('form-control') !!}
{{-- Date of next T/A --}}
@php $config = ['format' => 'DD-MM-YYYY']; @endphp
{{-- Turnaround Required --}}
{!! html()->label('Turnaround Required', 'turnaround_required') !!}
{!! html()->hidden('turnaround_required', 0) !!} solutioningTab && $threat->solutioningTab->turnaround_required == 1) checked @endif>
{{-- Revised Resolution Date --}}
{{-- Original Resolution Date --}}
{{-- Location Project Database Number --}}
{!! html()->label('Location Project Database Number', 'location_project_database_number') !!} {!! html()->text( 'location_project_database_number', $threat->solutioningTab ? $threat->solutioningTab->location_project_database_number : '', )->type('number')->attribute('min', '0')->attribute('step', '1')->class('form-control') !!}
{{-- MOC No --}}
{!! html()->label('MOC No', 'moc_no') !!} {!! html()->text('MOC_no', $threat->solutioningTab ? $threat->solutioningTab->MOC_number : '')->class('form-control') !!}
{{-- Monitoring/Testing --}}
{!! html()->label('Monitoring/Testing', 'monitoring_testing') !!} {!! html()->textArea('monitoring_testing', $threat->solutioningTab ? $threat->solutioningTab->monitoring_testing : '')->class('form-control') !!}
{{-- Notification No --}}
{!! html()->label('Notification No', 'notification_number') !!} {!! html()->text('notification_number', $threat->solutioningTab ? $threat->solutioningTab->notification_number : '')->class('form-control') !!}
{{-- Work Order No / Activity ID --}}
{!! html()->label('Work Order No. / Activity ID', 'work_order_no_activity_id') !!} {!! html()->text( 'work_order_no_activity_id', $threat->solutioningTab ? $threat->solutioningTab->work_order_no_activity_id : '', )->class('form-control') !!}
{{-- Total Opex --}}
{!! html()->label('Total Opex $', 'total_OpEx_dollar') !!} {!! html()->text( 'total_OpEx_dollar', $threat->solutioningTab ? currency_format($threat->solutioningTab->total_OpEx_dollar) : 0, )->class('form-control') !!}
{{-- End Long Term Solution --}}
@push('js') @endpush