@extends('layouts.admin') @section('title', 'Manage Testimonials') @section('content')
Manage customer feedback and testimonials
| Image | Customer | Content | Rating | Status | Approval | Created By | Actions |
|---|---|---|---|---|---|---|---|
|
@if($testimonial->customer_image)
|
{{ $testimonial->customer_name }}
{{ $testimonial->customer_role ?? 'Guest' }}
|
@for($i = 1; $i <= 5; $i++)
@if($i <= $testimonial->rating)
@elseif($i - 0.5 <= $testimonial->rating)
@else
@endif
@endfor
|
@if($testimonial->is_active) Active @else Inactive @endif | @if($testimonial->approval_status === 'approved') Approved @elseif($testimonial->approval_status === 'pending') Pending @else Rejected @endif | {{ $testimonial->creator->name ?? 'Unknown' }} | ||
|
No testimonials found. Create one now |
|||||||
Note: Only 3 active testimonials will be displayed on the welcome page. Make sure to set the display order to control which testimonials appear.