@if($project->image)
@if($project->status && $project->status !== 'completed')
{{ $project->status_label }}
@endif
@if($project->url)
Online
@endif
@endif
{{-- Categories & Tags --}}
@if($project->categories && $project->categories->count() > 0 || $project->tags && $project->tags->count() > 0)
@if($project->categories && $project->categories->count() > 0)
@foreach($project->categories->take(2) as $category)
{{ $category->name }}
@endforeach
@endif
@if($project->tags && $project->tags->count() > 0)
@foreach($project->tags->take(2) as $tag)
{{ $tag->name }}
@endforeach
@endif
@endif
@if($project->description)
{{ \Illuminate\Support\Str::limit(html_entity_decode(strip_tags($project->description)), 100) }}
@endif