@php $blogs = App\Models\Blog::latest()->limit(3)->get(); @endphp
@foreach($blogs as $item)
{{ Carbon\Carbon::parse($item->created_at)->diffForHumans() }}

{{ $item->blog_title }}

Read mORe
@endforeach