{!! html()->form( 'POST', isset($project) && $project->id ? route('IPF.update', base64_encode($project->id)) : route('IPF.store'), )->id('IPF_Aditional_Details_Form')->open() !!} @if (isset($project) && $project->id) @method('PUT') @endif

Details

{!! html()->label('Type', 'IPF_type')->toHtml() !!} {!! html()->select( 'IPF_type', [ '' => 'Select Type', 'CAPEX AI' => 'CAPEX AI', 'CAPEX MM' => 'CAPEX MM', ], old('IPF_type', $project->type ?? ''), )->class('form-control custom-select')->id('IPF_type') !!}
{!! html()->label('Entity', 'IPF_entity')->toHtml() !!} {!! html()->text('IPF_entity', old('IPF_entity', $project->entity ?? ''))->class('form-control')->id('IPF_entity')->placeholder('Enter Entity Name') !!}
{!! html()->label('Plant', 'IPF_plant')->toHtml() !!} {!! html()->text('IPF_plant', old('IPF_plant', $project->plant ?? ''))->class('form-control')->id('IPF_plant')->placeholder('Enter Plant Name') !!}
{!! html()->label('Site', 'IPF_master_site_id')->toHtml() !!} {!! html()->select('IPF_master_site_id', ['' => 'Select Site'])->id('IPF_master_site_id')->addClass('form-control')->attribute('data-selected', old('IPF_master_site_id', $project->master_site_id)) !!}
{!! html()->label('PU No', 'IPF_master_production_unit_id')->toHtml() !!} {!! html()->select('IPF_master_production_unit_id', ['' => 'Select PU No'])->id('IPF_master_production_unit_id')->addClass('form-control')->attribute('data-selected', old('IPF_master_production_unit_id', $project->master_production_unit_id)) !!}
{!! html()->label('Project No', 'IPF_project_no')->toHtml() !!} {!! html()->text('IPF_project_no', old('IPF_project_no', $project->project_no ?? ''))->class('form-control')->id('IPF_project_no')->placeholder('Enter Project Number') !!}
{!! html()->label('Unit No', 'IPF_master_unit_id')->toHtml() !!} {!! html()->select('IPF_master_unit_id', ['' => 'Select Unit No'])->id('IPF_master_unit_id')->addClass('form-control')->attribute('data-selected', old('IPF_master_unit_id', $project->master_unit_id)) !!}
{!! html()->label('WBS No', 'IPF_wbs_no')->toHtml() !!} {!! html()->text('IPF_wbs_no', old('IPF_wbs_no', $project->wbs_no ?? ''))->class('form-control')->id('IPF_wbs_no')->placeholder('Enter WBS Number') !!}
@php $config = ['format' => 'DD-MM-YYYY', 'autoclose' => true]; @endphp
Plan RFSU (Go Live) Date
{!! html()->label('OP Capex Headline (USD)', 'IPF_op_capex_headline_USD')->toHtml() !!} {!! html()->text( 'IPF_op_capex_headline_USD', old('IPF_op_capex_headline_USD', currency_format($project->op_capex_headline_USD ?? 0, 'USD') ?? ''), )->class('form-control price-input')->id('IPF_op_capex_headline_USD')->placeholder('Enter OP Capex Headline (USD)') !!}
{!! html()->label('OP CY Prev Yr Capex (USD)', 'IPF_op_cy_prev_yr_capex_USD')->toHtml() !!} {!! html()->text( 'IPF_op_cy_prev_yr_capex_USD', old('IPF_op_cy_prev_yr_capex_USD', currency_format($project->op_cy_prev_yr_capex_USD ?? 0, 'USD') ?? ''), )->class('form-control price-input')->id('IPF_op_cy_prev_yr_capex_USD')->placeholder('Enter OP CY Prev Yr Capex (USD)') !!}
{!! html()->label('OP CY Capex (USD)', 'IPF_op_cy_capex_USD')->toHtml() !!} {!! html()->text( 'IPF_op_cy_capex_USD', old('IPF_op_cy_capex_USD', currency_format($project->op_cy_capex_USD ?? 0, 'USD') ?? ''), )->class('form-control price-input')->id('IPF_op_cy_capex_USD')->placeholder('Enter OP CY Capex (USD)') !!}
{!! html()->label('OP CY+1 Capex (USD)', 'IPF_op_cy_1_capex_USD')->toHtml() !!} {!! html()->text( 'IPF_op_cy_1_capex_USD', old('IPF_op_cy_1_capex_USD', currency_format($project->op_cy_1_capex_USD ?? 0, 'USD') ?? ''), )->class('form-control price-input')->id('IPF_op_cy_1_capex_USD')->placeholder('Enter OP CY+1 Capex (USD)') !!}
{!! html()->label('OP CY+2 Capex (USD)', 'IPF_op_cy_2_capex_USD')->toHtml() !!} {!! html()->text( 'IPF_op_cy_2_capex_USD', old('IPF_op_cy_2_capex_USD', currency_format($project->op_cy_2_capex_USD ?? 0, 'USD') ?? ''), )->class('form-control price-input')->id('IPF_op_cy_2_capex_USD')->placeholder('Enter OP CY+2 Capex (USD)') !!}
{!! html()->label('OP CY+3 Capex (USD)', 'IPF_op_cy_3_capex_USD')->toHtml() !!} {!! html()->text( 'IPF_op_cy_3_capex_USD', old('IPF_op_cy_3_capex_USD', currency_format($project->op_cy_3_capex_USD ?? 0, 'USD') ?? ''), )->class('form-control price-input')->id('IPF_op_cy_3_capex_USD')->placeholder('Enter OP CY+3 Capex (USD)') !!}
{!! html()->label('Capex OP CY Comments', 'IPF_capex_op_cy_comments')->toHtml() !!} {!! html()->textarea('IPF_capex_op_cy_comments', old('capex_comments', $project->capex_op_cy_comments ?? ''))->class('form-control')->id('IPF_capex_op_cy_comments')->placeholder('Enter Capex OP CY Comments ...')->attribute('rows', 4) !!}
{{--
@php $config = ['format' => 'DD-MM-YYYY', 'autoclose' => true]; @endphp
Plan CAC Date
@php $config = ['format' => 'DD-MM-YYYY', 'autoclose' => true]; @endphp
Plan PAC Date
--}}
@php $config = ['format' => 'DD-MM-YYYY', 'autoclose' => true]; @endphp
Forecast CAC Date
@php $config = ['format' => 'DD-MM-YYYY', 'autoclose' => true]; @endphp
Forecast PAC Date
{!! html()->form()->close() !!}