@extends('layouts.index') @section('title') Detail Program @endsection @section('css') @endsection @section('content')

Program Detail

{{--
        {{dd($detail)}}
    
--}}

Person In Charge
flexy
{{ isset($program->person_in_charge) ? $program->person_in_charge_relation->nama_lengkap : '-' }}
PIC

Team
@foreach ($program->team as $data)
flexy
{{ $data->pegawai->nama_lengkap }}
{{ isset($data->pegawai->jabatan->nama) ? $data->pegawai->jabatan->nama : 'no position yet' }}
@endforeach
Proposed By
flexy
{{ $program->proposed_by ? $program->proposed_by_relation->nama_lengkap : '-' }}
Acknowledged By
flexy
{{ $program->acknowledge_by ? $program->acknowledge_by_relation->nama_lengkap : '-' }}
Approved By
flexy
{{ isset($program->approved_by_relation) ? $program->approved_by_relation->nama_lengkap : '-' }}

{{-- --}} Edit Program @if ($program->progress_status == 'approved') @elseif($program->progress_status == 'rejected') @else @endif
{{--

Log Activity

  • Program Created

    Project Management Unit - Project Management Systems and Policy

    24 Januari 2023 - 17:20 WIB
--}}

Description

@if($program->program_type == 'initiation')
Name

{{ $program->name ? $program->name : '-' }}

Cateogry

{{ $program->ref_kategori_program_id ? $program->ref_kategori_program->nama : '-' }}

Partners

{{ $program->ref_program_partner_id ? $program->ref_program_partner->name : '-' }}

Program Type

{{ $program->program_type ? ucwords($program->program_type) : '-' }}

Start Date

{!! $program->start_date ? $program->start_date : '-' !!}

End Date

{!! $program->end_date ? $program->end_date : '-' !!}

Description

{!! $program->description ? $program->description : '-' !!}

Sustainability Impact Focus

{!! $program->sustainability_impact_focus ? $program->sustainability_impact_focus : '-' !!}

Support Needed

{!! $program->support_needed ? $program->support_needed : '-' !!}

Funding Model

{!! $program->funding_models ? $program->funding_models : '-' !!}

Stackholders

{!! $program->stakholders ? $program->stakholders : '-' !!}

Progress Status
@if ($program->progress_status == 'approved') {{ ucwords($program->progress_status) }} @elseif($program->progress_status == 'rejected') {{ ucwords($program->progress_status) }} @else Reviewed @endif
Risk Management

{!! $program->risk_management ? $program->risk_management : '-' !!}

Further Exploration For Discussion

{!! $program->further_exploration_for_discussion ? $program->further_exploration_for_discussion : '-' !!}

Decision Making

{!! $program->decision_making ? $program->decision_making : '-' !!}

@elseif($program->program_type == 'formulation')
Program Name

{{ $program->name ? $program->name : '-' }}

Client Name

{{ $program->ref_program_client ? $program->client_program_formulation->name : '-' }}

Start Date

{!! $program->start_date ? $program->start_date : '-' !!}

End Date

{!! $program->end_date ? $program->end_date : '-' !!}

Program Type

{{ $program->program_type ? ucwords($program->program_type) : '-' }}

Description

{!! $program->description ? $program->description : '-' !!}

Timeline And Total Commited Dates

{!! $program->timeline_and_total_commited_dates ? $program->timeline_and_total_commited_dates : '-' !!}

Financial Scheme

{!! $program->financial_scheme ? $program->financial_scheme : '-' !!}

Value Considerations (Impact) To UID

{!! $program->value_considerations ? $program->value_considerations : '-' !!}

Resource Allocation

{!! $program->resource_allocation ? $program->resource_allocation : '-' !!}

Sustainability Impact Focus

{!! $program->sustainability_impact_focus ? $program->sustainability_impact_focus : '-' !!}

Risk Management

{!! $program->risk_management ? $program->risk_management : '-' !!}

Supporting Document

{!! $program->supporting_documents ? $program->supporting_documents : '-' !!}

@endif
Approve Program

@csrf
Reject Program

@csrf