@extends('front.frontLayout') @section('title',isset($blog_detail->name) ? $blog_detail->name : 'Blog Detail') @section('pagelevelcss') @stop @section('content')
@if(isset($blog_detail->name)) {{ $blog_detail->name }} {!! $blog_detail->description !!} @else No data available. @endif

{{ count($comments) }} Comments

  1. @foreach($comments as $value)
    Your comment is awaiting moderation.

    {{ $value->discription }}

    Reply
    @if(count($value->sub_comment) > 0) @foreach($value->sub_comment as $sub_comment)
    Your comment is awaiting moderation.

    {{ $sub_comment->discription }}

    @endforeach @endif @endforeach
{{ csrf_field() }}

Submit a Comment

@if((Auth::check() && auth()->user()->role == "client")) @else @endif
@endsection @section('pageleveljs') @stop