@php
$tagsArray = is_array($item->tags) ? $item->tags : json_decode($item->tags, true);
@endphp
@foreach($tagsArray ?? [] as $tag)
{{ is_array($tag) ? implode(', ', $tag) : $tag }}
@endforeach
{{ Str::limit($item->description, 300, '...') }}
{{ $item->purpose }}
Uploaded at
{{ \Carbon\Carbon::parse($item->created_at)->format('d.m.Y') }}
Downloads {{ $item->download_count }}
Views {{ $item->view_count }}