@extends('Frontend.layouts.top-nav') @section('content') @if ($blog->status=='1')
Author: {{$blog->author}}

{{$blog->title}}
{!! $blog->content !!}
Activity
{{-- {!! Form::open(['route' => ['blogfront.index'],'method'=>'GET']) !!} {!! Form::submit('View All Posts', array('class' => 'btn btn-sm btn-info form' )) !!} {!! Form::close() !!} --}} View All Posts
Related Posts
@if (count($lists)=='1')
No any related posts
@else
    @foreach ($lists as $k=>$list) @if ($blog->id != $list->id && $k<=5)
  • {{ $list->title}}
  • @endif @endforeach
@endif
@endif @endsection