Active Projects
Added By
Shared With
status
comments
@php $check = false; $otherCheck = false; if($ActiveSlug == 'in_progress'){ $sortedProjects = $projects; } else{ $sortedProjects = $projects->sortByDesc('statusLog.created_at'); } @endphp @foreach ($sortedProjects as $key => $project) @if($loop->first)
@elseif($project->status_text == 'In Queue') @if(!$check)
@endif @elseif($project->status_text == 'Revision in Queue')
@endif @if($lastLoaded && $loop->iteration > $lastLoaded)

Added By
Shared With
@else
@endif @if($project->status_text == 'In Queue') @php $check = true; @endphp @endif @if ($project->status_text == 'Revision in Queue') @php $otherCheck = true; @endphp @endif @if($loop->last)
@endif @endforeach