@if($project->image)
@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($project->description, 100) }}
@endif