@extends('frontend.layouts.app') @section('page_title') {{(!empty($page_title) && isset($page_title)) ? $page_title : ''}} @endsection @section('content')
@forelse($blogs as $blog)
{{ $blog->name }}

{{ $blog->name }}

{{ !empty($blog->short_description) ? Str::limit($blog->short_description, 150) : Str::limit(strip_tags($blog->description), 150) }}

Posted On
{{ \Carbon\Carbon::parse($blog->blog_date)->format('d-M-Y') }}
Read More
@empty

No blogs found

Please check back later for updates.

@endforelse
@if($blogs->hasPages())
@endif
@endsection @push('footer-scripts') @endpush