@extends('layouts.admin') @section('title', 'Testimonials') @section('page-title', 'Manage Testimonials') @section('content')
Add New Testimonial
@forelse($testimonials as $testimonial) @empty @endforelse
Student Name Destination Rating Status Actions
{{ $testimonial->student_name }}
{{ $testimonial->destination_country }}
@for($i = 1; $i <= 5; $i++) @if($i <=$testimonial->rating) @else @endif @endfor
@if($testimonial->is_active) Active @else Inactive @endif Edit
@csrf @method('DELETE')

No testimonials found

@if($testimonials->hasPages())
{{ $testimonials->links() }}
@endif
@endsection