@extends($layout) @section('content') @php $milestones = $milestones ?? []; $clients = $clients ?? []; $clientNameSelected = __('headline.all_clients'); $htmlDropdownClients = ''; foreach ($clients as $client) { $href = BASE_URL.'/tickets/roadmapAll?clientId='.$client['id']; $labelActive = ''; if (isset($_GET['clientId']) && $_GET['clientId'] == $client['id']) { $labelActive = ' class="active"'; $clientNameSelected = $client['name']; } $htmlDropdownClients .= "
  • {$client['name']}
  • "; } $roadmapView = session('usersettings.views.roadmap', 'Month'); @endphp @include('tickets::submodules.portfolioHeader')
    @include('tickets::submodules.portfolioTabs')
    {!! $tpl->displayNotification() !!}
    @php $currentView = ''; if ($roadmapView == 'Day') { $currentView = __('buttons.day'); } elseif ($roadmapView == 'Week') { $currentView = __('buttons.week'); } elseif ($roadmapView == 'Month') { $currentView = __('buttons.month'); } @endphp
    @php if (count($milestones) == 0) { echo "
    "; echo "
    "; echo file_get_contents(ROOT.'/dist/images/svg/undraw_adjustments_p22m.svg'); echo '
    '; echo '

    '.__('headlines.no_milestones').'

    '.__('links.add_milestone').'

    '; } @endphp
    @once @push('scripts') @endpush @endonce @endsection