@extends('layouts.app') @section('content') @if(Session::has('success_message'))
{!! session('success_message') !!}
@endif
Comments
@if(count($comments) == 0)

ไม่พบข้อมูล Comments

@else
@foreach($comments as $comment) @endforeach
ชื่อผู้แสดงความคิดเห็น อีเมล์ผู้แสดงความคิดเห็น เบอร์โทรผู้แสดงความคิดเห็น
{{ $comment->post_name }} {{ $comment->post_email }} {{ $comment->post_tel }} {{ optional($comment->blog)->post_name }}
{{ csrf_field() }}
@endif
@endsection