@extends('admin.layout.index') @section('title', 'Onaylanan Yorumlar') @section('content')
@foreach($data as $key => $comment) @endforeach
Sıra
Müşteri
Ürün
Yorum
Edit
{{ $key + 1 }} {{ db('front_user')->where('id', $comment->front_user_id)->get()->first()->name . ' ' . db('front_user')->where('id', $comment->front_user_id)->get()->first()->surname }}

{{ $comment->comment }}

Onayı Geri Çek Sil
@endsection