@extends($layout) @section('content')
{!! $tpl->displayNotification() !!}
{!! __('subtitles.summary') !!} @if ($fullReportLatest)({{ format($fullReportLatest['date'])->date() }})@endif
{!! __('label.planned_hours') !!} @if ($fullReportLatest !== false && $fullReportLatest['sum_planned_hours'] != null){{ format($fullReportLatest['sum_planned_hours'])->decimal() }}@else{{ 0 }}@endif
{!! __('label.estimated_hours_remaining') !!} @if ($fullReportLatest !== false && $fullReportLatest['sum_estremaining_hours'] != null){{ format($fullReportLatest['sum_estremaining_hours'])->decimal() }}@else{{ 0 }}@endif
{!! __('label.booked_hours') !!} @if ($fullReportLatest !== false && $fullReportLatest['sum_logged_hours'] != null){{ format($fullReportLatest['sum_logged_hours'])->decimal() }}@else{{ 0 }}@endif
{!! __('label.open_todos') !!} @if ($fullReportLatest !== false) {{ format(($fullReportLatest['sum_open_todos'] + $fullReportLatest['sum_progres_todos']))->decimal() }} @else {{ 0 }} @endif
@if ($allSprints !== false)
{!! __('subtitles.sprint_burndown') !!}

@if ($allSprints !== false && count($allSprints) > 0) @endif
@endif


{!! __('subtitles.cummulative_flow') !!}


{!! __('subtitles.project_progress') !!}


{!! __('headline.milestones') !!}
    @if (count($milestones) == 0)

    {!! __('headlines.no_milestones') !!}

    {!! __('text.milestones_help_organize_projects') !!}

    {!! __('links.goto_milestones') !!} @endif @foreach ($milestones as $row)
  • {!! __('label.due') !!} {{ format($row->editTo)->date(__('text.no_date_defined')) }}
    {!! sprintf(__('text.percent_complete'), $row->percentDone) !!}
    {!! sprintf(__('text.percent_complete'), $row->percentDone) !!}
  • @endforeach
@once @push('scripts') @endpush @endonce @endsection