@php $sectionData = App\Models\CustomerReviewSection::orderBy('created_at', 'desc')->first(); @endphp
{{ __('Section Title & Subtitle') }} {{ __('Settings') }}
@csrf
{{ __('Update Section Title') }}
{{ __('Customer Reviews') }} {{ __('List') }}
{{ __('Add Review') }}
@foreach ($customer as $c) @endforeach
{{ __('Photo') }} {{ __('Name') }} {{ __('Designation') }} {{ __('Comment') }} {{ __('Status') }} {{ __('Actions') }}
{{ __('Avatar') }} {{ $c['name'] }} {{ $c['designation'] ?? '-' }} {{ \Illuminate\Support\Str::limit($c['comment'], 20) }} @if ($c['status'] === 1) {{ __('Active') }} @else {{ __('Inactive') }} @endif
{{ __('Edit') }} @php $modalId = 'showModal_' . $c->id; @endphp