@include('Admin.Includes.header') @php use Illuminate\Support\Facades\Auth; $logged_in_user = Auth::user(); @endphp

{{ __('Testimonials Management') }}

Advanced Filters
Reset
Testimonials Table
@if(request()->hasAny(['keyword', 'status', 'rating'])) Filtered Results: {{ $testimonials->count() }} Clear Filters @else Total Testimonials: {{ $testimonials->count() }} @endif
@forelse ($testimonials as $testimonial) @empty @endforelse
Customer Info Short Description Rating Status Created Actions
@if($testimonial->customer_image) Customer @else
@endif
{{ $testimonial->customer_name }}
@if($testimonial->customer_position) {{ $testimonial->customer_position }} @endif @if($testimonial->company_name)
{{ $testimonial->company_name }}
@endif
@if($testimonial->short_description)
{{ Str::limit($testimonial->short_description, 100) }}
@else No description @endif
@for($i = 1; $i <= 5; $i++) @if($i <= floor($testimonial->rating)) @elseif($i - 0.5 <= $testimonial->rating) @else @endif @endfor
{{ number_format($testimonial->rating, 1) }}
@if($testimonial->is_active) Active @else Inactive @endif {{ $testimonial->created_at->format('M d, Y') }}
No testimonials found
Customer Info Short Description Rating Status Created Actions
@include('Admin.Includes.footer')