@extends('admin.partial.admin_master') @section('title') Project Lists | Aplikasi Project Management @endsection @section('css') @endsection @section('main') @can('Detail WBS')

Detil Project | {{ $project->project_name??'' }}

Back

PLAN

@can('Report') @endcan @if($project->status != "Started") Edit WBS @endif
@foreach ($detil as $key=>$row ) @endforeach
No Task Name Start Date End Date Bobot Progress Duration
{{ $key+1 }} @if ($row->level == 1)
  • {{ $row->name??'' }}
@elseif ($row->level == 2)
    • {{ $row->name??'' }}
@else {{ $row->name??'' }} @endif
{{ Carbon\Carbon::parse($row->start ??'')->isoFormat('D MMMM Y') ??'' }} {{ Carbon\Carbon::parse($row->end ??'')->isoFormat('D MMMM Y') ??'' }} {{ $row->bobot??'' }} {{ $row->progress??'' }} {{ $row->duration??'' }} Days
{{-- {{ $actname->project_id }} --}}

ACTUAL

@can('Report') @endcan

Total Progress

{{ $line?collect($line)->sort()->last()."%":"" }}

@foreach ($actual as $key=>$row ) @endforeach
No Task Name Start Date End Date Bobot Progress Duration
{{ $key+1 }} @if ($row->level == 1)
  • {{ $row->name??'' }}
@elseif ($row->level == 2)
    • {{ $row->name??'' }}
@else {{ $row->name??'' }} @endif
{{ Carbon\Carbon::parse($row->start ??'')->isoFormat('D MMMM Y') ??'' }} {{ Carbon\Carbon::parse($row->end ??'')->isoFormat('D MMMM Y') ??'' }} {{ $row->bobot??'' }} {{ $row->progress??'' }} {{ $row->duration??'' }} Days
@endcan @endsection @section('js') {{-- --}} @endsection