@extends('layouts.vertical', ['title' => 'Testimonials']) @section('content')

Testimonials

@if(session('success')) @endif
All Testimonials
@forelse($testimonials as $testimonial) @empty @endforelse
# Picture Name Position Subject Date Posted Status Actions
{{ $testimonial->id }} @if($testimonial->picture) {{ $testimonial->name }} @else No Image @endif {{ $testimonial->name }} {{ $testimonial->position ?? '-' }} {{ $testimonial->subject ?? '-' }} @if($testimonial->date_posted) {{ $testimonial->date_posted->format('M d, Y H:i') }} @else Not set @endif @if($testimonial->status === 'Y') Active @else Inactive @endif
@csrf @method('DELETE')

No testimonials found

Add Your First Testimonial
@if($testimonials->hasPages())
{{ $testimonials->links() }}
@endif
@endsection