@extends('panel.layout.base') @section('title',$title) @section('content')

Beklemede Olan Yorumlar

@foreach(\App\Models\BlogComment::with('user','blog')->where('publish','P')->get()->toArray() as $item) @endforeach
Kullanıcı Blog Yorum Tarihi İşlemler
{{ $item['user']['name'] }} {{ $item['blog']['title'] }} {{ \Carbon\Carbon::parse($item['created_at'])->format('d/m/Y H:i') }} İncele

Onaylanan Yorumlar

@foreach(\App\Models\BlogComment::with('user','blog')->where('publish','Y')->get()->toArray() as $item) @endforeach
Kullanıcı Blog Yorum Tarihi İşlemler
{{ $item['user']['name'] }} {{ $item['blog']['title'] }} {{ \Carbon\Carbon::parse($item['created_at'])->format('d/m/Y H:i') }} İncele

Onaylanmayan Yorumlar

@foreach(\App\Models\BlogComment::with('user','blog')->where('publish','N')->get()->toArray() as $item) @endforeach
Kullanıcı Blog Yorum Tarihi İşlemler
{{ $item['user']['name'] }} {{ $item['blog']['title'] }} {{ \Carbon\Carbon::parse($item['created_at'])->format('d/m/Y H:i') }} İncele
@endsection @section('script') @endsection