@extends('layouts.app')
@section('content')
{{-- Page Header --}}
| {{ __('#') }} | {{ __('Thumbnail') }} | {{ __('Name') }} | {{ __('Designation') }} | {{ __('Rating') }} | {{ __('Description') }} | {{ __('Status') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|---|---|
| {{ $testimonial->id }} |
|
@for ($i = 1; $i <= 5; $i++) @if ($i <= $testimonial->rating) ★ @else ☆ @endif @endfor | @php if ($testimonial->status) { $className = 'text-success'; $value = 'Active'; $icon = 'fas fa-check-circle'; } else { $className = 'text-warning'; $value = 'Inactive'; $icon = 'fas fa-clock'; } @endphp
|
|
|||
| {{ __('No testimonials found.') }} | |||||||