@forelse($companyRecommendations['list'] as $index => $item)
@if($item?->category?->title)
{{ $item?->category?->title }}
@endif
{{ date('M d, h:i A', strtotime($item['published_at'])) }}
@if($item['is_locked'])
@endif
@if($item['is_approved'])
@endif
{{ htmlspecialchars($item['title']) }}
{{ Str::limit($item['description'], 80, '...') }}
{{ number_format($item['view_count']) }}
{{ number_format($item['like_count']) }}
{{--
{{ ucfirst($item['status']) }}
--}}
@empty
{{ __('labels.no_recommendations_available') }}
@endforelse