@extends('layouts.main') @foreach($blogs as $blog) {{-- Dynamic Title --}} @section('title') {{ $blog->blog_title }} @endsection {{-- Dynamic Meta Description --}} @section('meta_description') @endsection {{-- Dynamic Meta Keywords --}} @section('meta_keywords') @endsection {{-- Dynamic OG Image --}} @section('og_image') @endsection {{-- Extra Open Graph / Twitter Tags --}} @push('meta') @endpush @endforeach @section('main-section') {{-- @component('components.breadcrumbs') Home Blogs {{ $blog_details->blog_title }} @endcomponent --}} {{--

Blogs

  1. Blogs
  2. |
  3. {{ $blog_details->blog_title }}
--}}
{{-- {{ $blog_details->blog_title }} --}} {{ $blog_details->blog_title }}
{{ Carbon\Carbon::parse($blog_details->created_at)->format('M d, Y') }}

{{ $blog_details->blog_title }}

{!! nl2br(e($blog_details->blog_description)) !!}
{!! $blog_details->blog_body !!}

Go to Blogs Page
@endsection