@extends('admin.layouts.app') @section('title', 'Müşteri Yorumları') @section('header', 'Müşteri Yorumları') @section('content')
@forelse($testimonials as $testimonial) @empty @endforelse
Müşteri Şehir Yorum Durum İşlemler
{{ $testimonial->customer_name }} {{ $testimonial->city }} {{ Str::limit($testimonial->content, 100) }}
is_active ? 'checked' : '' }} data-url="{{ route('admin.testimonials.toggle-active', $testimonial) }}">
@csrf @method('DELETE')
Henüz müşteri yorumu bulunmuyor.
@push('styles') @endpush @push('scripts') @endpush @endsection