@extends('../../master_layout/website_master') @section('heading')
Back

{{$post->title}}

@php $breadcrumb = array( array('title'=>'Blog', 'url'=>route('discover.blog')), array('title'=>'Post', 'url'=>'', 'active'=>'1') ); @endphp @include('website_view.component.breadcrumb', compact("breadcrumb"))
@endsection @section('content') @if (session('errors'))
@foreach($errors->all() as $message)
  • {{$message}}
  • @endforeach
    @endif
    Back to All Posts

    {{ $post->title }}

    {{ date('F j, Y', strtotime($post->created_on)) }}
    @if($post->image !='')
    {{ $post->title }}
    @endif
    {!! $post->content !!}
    @endsection