@extends('layouts.app') @section('title', 'Testimonials') @section('page-title', 'Testimonials') @section('breadcrumb', 'Website / Testimonials') @push('styles') @endpush @section('content') @php $status = $status ?? request('status'); $editItems = $items->map(fn ($item) => [ 'id' => $item->id, 'author_name' => $item->author_name, 'author_title' => $item->author_title, 'content' => $item->content, 'rating' => (int) $item->rating, 'is_published' => (bool) $item->is_published, 'avatar_url' => $item->avatarUrl(), 'update_url' => route('admin.company-page.testimonials.update', $item), ])->values(); @endphp
Featured quotes shown on your public institute page ({{ $company->name }}).
| Author | Testimonial | Rating | Status | Date | Actions |
|---|---|---|---|---|---|
|
@if($item->avatarUrl())
{{ $item->author_name }}
{{ $item->author_title ?: '—' }}
|
{{ $item->content }}
|
{{ $item->rating }}/5
|
|
{{ optional($item->created_at)->format('M d, Y') }}
{{ optional($item->created_at)->format('H:i') }}
|
|
No testimonials yet
Add your first featured quote for the public institute page.