@php $sr=$counter; use Illuminate\Support\Str; @endphp @foreach($listing as $key => $l)
{{$sr}} 

{{ $l['title'] }}

{{date('d-M-Y',strtotime($l['created']))}} {{-- 22-Jan-2022 --}}
@if($l['file_type'])
@if($l['file_type'] == 'image' && $l['image'] && file_exists(public_path($l['image'])))
@include('frontend.partials.fileRender', ['file' => $l['image'], 'size' => "small"])
@elseif($l['file_type'] == 'video' && $l['thumbnail'] && $l['video'] && file_exists(public_path($l['video'])) )
@endif
@endif
@php $sr++; @endphp @endforeach