{{ __("headline.project_hub") }}
This is your project hub. All the projects you are currently assigned to or have favorited are here. @if ($login::userIsAtLeast("manager"))
{!! __("menu.create_something_new") !!} @endif
This is your project hub. All the projects you are currently assigned to or have favorited are here. @if ($login::userIsAtLeast("manager"))
{!! __("menu.create_something_new") !!} @endif
@if (count($clients) > 0)
@endif
@if (count($allProjects) == 0)
@endif
⭐ My Favorites
🗂️ All Assigned Projects
{{ __('notifications.not_assigned_to_any_project') }}
@if($login::userIsAtLeast($roles::$manager))
{{ __('link.new_project') }} @endif
{{ __('link.new_project') }} @endif
@php
$hasFavorites = false;
@endphp
@foreach ($allProjects as $project)
@if($project['isFavorite'] == true)
@include("projects::partials.projectCard", ["project" => $project, "type" => "detailed"])
@php
$hasFavorites = true;
@endphp
@endif
@endforeach
@if($hasFavorites === false)
You don't have any favorites. 😿
@endif
@foreach ($allProjects as $project)
@if($project['isFavorite'] == false)
@include("projects::partials.projectCard", ["project" => $project, "type" => "detailed"])
@endif
@endforeach