@extends('admin.layout.app') @section('title', 'comments' ) @section('top')
@endsection @section('content')
@foreach($comments as $comment) @endforeach
Name Phone Email Title Content Published On Action
{{$comment->name}} {{$comment->phone}} {{$comment->email}} {{$comment->title}} {{$comment->content}} {{$comment->created_at}}
@include('admin.component.comment.delete') @endsection