@extends('layouts.admin')
@section('content')
Website content
Testimonials
Testimonials can be saved as drafts or published directly. The only separate requirement retained here is reuse permission: HMS should not publish someone’s testimonial unless permission to reuse it is confirmed.
@forelse($testimonials as $testimonial)
{{ $testimonial->attribution ?: 'Unattributed' }}{{ $testimonial->source ?: 'No source recorded' }}
{{ str($testimonial->permission_status)->headline() }}{{ str($testimonial->status)->headline() }}
{{ $testimonial->public_wording ?: $testimonial->original_wording }}
@empty
No testimonials yet.
@endforelse
@endsection