{{ __('project.filter-title') }}

@if(count($categories) > 0) @endif
@if(count($selectedCategories) > 0)
@foreach($categories->whereIn('id', $selectedCategories) as $category)
{{ $category->name }}
@endforeach
@endif
@if(count($projects) < 1)

{{__('project.filter-empty')}}

@endif
@foreach($projects as $project)
@if($project->is_pined)
@endif @if($project->is_newed)
{{ __('project.tag.new') }}
@endif @php($tags = $project->getCategoryNames()) @foreach($tags as $tag)
{{ $tag }}
@endforeach
{{ $project->title }}

{{ \Illuminate\Support\Str::limit($project->description, 175) }}

@endforeach