| {{__('SummaryId')}} | {{__('Tasks')}} | {{__('Status')}} | {{__('Actual Progress')}} | {{__('Planned Progress')}} | {{__('Planned Start Date')}} | {{__('Planned End Date')}} |
|---|---|---|---|---|---|---|
| {{ $show_parent->id }} | {{ $show_parent->text }} | @if (strtotime($show_parent->end_date) < time() && $show_parent->progress < 100) Pending @elseif(strtotime($show_parent->end_date) < time() && $show_parent->progress >= 100) Completed @else In-Progress @endif |
{{round($show_parent->progress)}}%
|
{{round($current_Planed_percentage)}}%
|
{{ Utility::site_date_format($show_parent->start_date,\Auth::user()->id) }} | {{ Utility::site_date_format_minus_day($show_parent->end_date,\Auth::user()->id,1) }} |