{{-- To make a editable image or text need to be add a "builder editable" class and builder identity attribute with a unique value --}} {{-- builder identity and builder editable --}} {{-- builder identity value have to be unique under a single file --}}
{{get_phrase('Our Blog')}}

{{get_phrase('Have a look on our news')}}

{{ get_phrase('View All Blogs') }}
@php $blogs = App\Models\Blog::where('status', 1)->orderBy('is_popular', 'desc')->orderBy('id', 'desc')->take(3)->get(); @endphp
@foreach ($blogs as $key => $blog)
blog-thumbnail {{ get_blog_category_name($blog->category_id) }}

{{ ucfirst($blog->title) }}

{{ ellipsis(strip_tags($blog->description), 160) }}

{{ get_phrase('Read More') }} {{ date('d M, Y', strtotime($blog->created_at)) }}
@endforeach