@foreach ($statuses as $status)
{{ $status->title }}
{{ $projects->where('status_id', $status->id)->count() }}/{{ $projects->count() }}
@foreach ($projects->where('status_id', $status->id) as $project)
@if ($project->tags->isNotEmpty())
@foreach ($project->tags as $tag) {{$tag->title}} @endforeach
@endif
{{ ucfirst(Str::limit($project->title, 15)) }}
@if($project->priority) {{ $project->priority->title }} @endif
@if ($project->budget != '') {{ format_currency($project->budget) }} @endif
@if(filled($project->description))

{!! Str::limit($project->description, 60) !!}

@endif
@if($webGuard || $project->client_can_discuss) @endif