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