@extends('layouts.app') @section('content')
@if($blog->public=='YES') @else @endif {{ $blog->topic }}
เนื้อหา
{{ $blog->detail }}
ตั้งโดย : {{ $blog->post_name }} เมื่อ : {{ $blog->created_at }} , ผู้เผยแพร่ : {{ optional($blog->user)->name }}
การตอบกระทู้
@if(Session::has('msg'))
{!! session('msg') !!}
@endif @if ($errors->any()) @endif @foreach($comments as $comment)
ความคิดเห็นที่ {{++$r}}
{{ $comment->detail }}
ตอบโดย : {{ $comment->post_name }} เมื่อ : {{ $comment->created_at }}
Email ผู้ตั้งกระทู้ : {{ $comment->post_email }} เบอร์โทรผู้ตั้งกระทู้ : {{ $comment->post_tel }}
@endforeach @endsection