@php $blogs = App\Models\Blog::where('status',1)->whereHas('category',function($q){ $q->where('status',1); })->latest()->inRandomOrder()->take(3)->get(); @endphp
@lang(@$section->content->title)

@lang(@$section->content->heading)

@lang(@$section->content->sub_heading)

@foreach ($blogs as $item)
@lang('Admin') {{dateFormat($item->created_at,'d M Y')}}
{{__(Str::limit($item->title,30))}}
@lang('Read More')
@endforeach