@extends('front.layouts.master') @section('content') Our Blogs Home Blog Posts {{ $pageContent->blog_title ?? 'Latest Blogs' }} {{ $pageContent->blog_heading ?? 'Latest Insights & Articles' }} @if (isset($blogs) && count($blogs) > 0) @foreach ($blogs as $blog) {{ date('d', strtotime($blog->blog_date)) }} {{ date('M', strtotime($blog->blog_date)) }} {{ \Illuminate\Support\Str::words(strip_tags($blog->title), 6, '...') }} {{ \Illuminate\Support\Str::words(strip_tags($blog->short_description), 12, '...') }} {{-- Read More --}} Read More @endforeach @endif @endsection
Blog Posts
{{ \Illuminate\Support\Str::words(strip_tags($blog->short_description), 12, '...') }}