@php use Illuminate\Support\Str; @endphp @foreach($listing as $key => $dates)

{{$dates['month'].' '.$dates['year']}}

@foreach($dates['videos'] as $k => $a)
@if( (isset($activePlanFeatures) && $activePlanFeatures && isset($activePlanFeatures['all_audios_videos']) && $activePlanFeatures['all_audios_videos'] == 1 ) && $type == 'paid' || $type == 'free' || $id == $user->id)
@else
@endif
{{date('M d, Y',strtotime($a['created']))}} {{-- Dec 26, 2021 --}}

{{Str::limit($a['title'],40)}}
{!! Str::limit($a['description'],40) !!}

@endforeach @endforeach