@extends('admin::layouts.master') @section('title','E-SHOP || Comment Page') @section('content')
Comment Lists
@if(count($comments)>0) @foreach($comments as $comment) @endforeach
@lang('partials.s_n') @lang('partials.author') Post Title Message @lang('partials.date') @lang('partials.status') @lang('partials.action')
@lang('partials.s_n') @lang('partials.author') Post Title Message @lang('partials.date') @lang('partials.status') @lang('partials.action')
{{$comment->id}} {{$comment->user_info['name']}} {{$comment->post['title'] ?? ''}} {{$comment->comment ??''}} {{$comment->created_at->format('M d D, Y g: i a')}} @if($comment->status=='active') {{$comment->status}} @else {{$comment->status}} @endif
@csrf @method('delete')
@else
No post comments found!!!
@endif
@endsection