| {{ $i++ }} |
{{ $item->title }} |
{{ \Illuminate\Support\Str::limit($item->description, 50, '...') }}
|
{{-- {{ $item->description }} | --}}
@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
|
{{ $item->udl_download_date }} |
|
@empty