@extends('admin.layout') @section('title','Testimonials') @section('page-title','Student Testimonials') @section('content')

All Testimonials ({{ $testimonials->count() }})

@forelse($testimonials as $t)
@csrf @method('PUT')
@if($t->photo) @else
{{ substr($t->name,0,1) }}
@endif
@csrf @method('DELETE')
@empty
No testimonials yet.
@endforelse

Add Testimonial

@csrf
JPG/PNG, max 2MB. Square photo recommended.
@endsection