@extends('layouts.admin-layout') @section('title', 'Home Testimonials') @section('content')

Testimonials

@if (session('success'))
{{ session('success') }}
@endif

All Testimonials

@forelse($testimonials as $t) @empty @endforelse
# Name Message Stars Order Status Actions
{{ $loop->iteration }} {{ $t->name }} {{ Str::limit($t->message, 70) }} @for ($i = 1; $i <= 5; $i++) @endfor {{ $t->sort_order }} @if ($t->is_active) Active @else Inactive @endif
@csrf @method('DELETE')
No testimonials found. Add one.
@endsection