@extends('layouts.master') @section('content') @section('title', $blog->title) @section('meta') @endsection {{ $blog->title }} {{$blog->author}} {{$blog->tags}} {{$blog->post_date}} {!! $blog->description !!} Share on social media Share on Facebook Share on Twitter Share on LinkedIn Share on Telegram Share on WhatsApp Recent Posts: @foreach($blogs as $blog) @if($loop->index >= 4) {{$blog->post_date}} {{$blog->title}} {!! substr(strip_tags($blog->description), 0, 200) !!}... Read More @endif @endforeach @endsection @section('footer') @include('layouts.footer') @endsection