@extends('theme.master') @section('title', "$blog->heading") @section('content') @include('admin.message') @section('meta_tags') @php $url = URL::current(); @endphp @endsection @php $gets = App\Breadcum::first(); @endphp @if(isset($gets)) @if($gets['img'] !== NULL && $gets['img'] !== '') @else @endif {{ __('Blog Detail') }} @endif {{ date('d-m-Y',strtotime($blog['created_at'])) }} {{ date('h:i:s A',strtotime($blog['created_at'])) }} {{ $blog->heading }} {!! $blog->detail !!} {{ __('Back to Blog') }} {{ __('Recent Posts') }} @foreach($blogs as $b) {{ $b->heading }} {{ date('d-m-Y',strtotime($b['created_at'])) }} @endforeach {{ __('View All Posts') }} @endsection
{!! $blog->detail !!}