@extends('user.user_dashboard') @section('home') {{ $blog->blog_name }} Dashboard Upcoming Events and Blogs {!! $blog->blog_text !!} @php $recentBlogs = App\Models\Blog::latest()->limit(5)->where('status', 1)->get(); @endphp Recent Events and Blogs @foreach( $recentBlogs as $recent) {{ $recent->blog_name }} @endforeach View All @endsection