{{ __('Testimonials') }}

{{ __('Add New Testimonial') }}
@if($testimonials->isEmpty())

No testimonials found. Create your first testimonial.

@else @foreach($testimonials as $testimonial)
{{ $testimonial->client_name }}

{{ $testimonial->client_name }}

{{ $testimonial->client_position }}

"{{ $testimonial->content }}"

@for($i = 1; $i <= 5; $i++) @endfor
{{ $testimonial->is_active ? 'Active' : 'Inactive' }}
@csrf @method('DELETE')
@endforeach
@endif