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