@extends('frontend.master', ['activePage' => 'blog']) @section('title', __('Our Latest Blog')) @section('content')
{{ __('Blogs') }}
({{ count($blogs) }})
{{ Carbon\Carbon::parse($item->created_at)->format('d M Y') }}
{{ $item->title }}
{{ \Illuminate\Support\Str::limit(strip_tags($item->description), 150, $end = '...') }}
{{ __('Read More') }}{{ Carbon\Carbon::parse($blog->created_at)->format('d M Y') }}
{{ $blog->title }}
{{ \Illuminate\Support\Str::limit(strip_tags($blog->description), 150, $end = '...') }}
{{ __('Read More') }}{{ __('There is no blog post available in this category') }}
@endif