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

Project Detail

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

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

Team
@foreach ($team->member as $data)
flexy
{{ $data->pegawai->nama_lengkap }}
{{ isset($data->pegawai->jabatan->nama) ? $data->pegawai->jabatan->nama : 'no position yet' }}
@endforeach
Edit Project

Description

Project Name

{{ $team->name != '' ? $team->name : '-' }}

Description

{!! $team->description != '' ? $team->description : '-' !!}

Project Type

{!! $team->type != '' ? ucwords($team->type) : '-' !!}

@csrf