@extends('layouts.admin') @section('title', 'Testimonials') @section('page-title', 'Manage Testimonials') @section('content')
| 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 |
|
No testimonials found |
||||