@extends('layouts.admin') @section('title', 'Kelola Testimonial') @section('content_header')

Kelola Testimonial

@stop @section('content')
@if ($message = Session::get('success')) @endif

Daftar Testimonial

@if ($testimonials->count() > 0) @foreach ($testimonials as $key => $t) @endforeach
No Nama Institusi Foto Review Rating Aksi
{{ ($testimonials->currentPage() - 1) * $testimonials->perPage() + $key + 1 }} {{ $t->name }} {{ $t->institution }} @if ($t->photo) {{ $t->name }} @else - @endif {{ Str::limit($t->review, 60, '...') }} {{ $t->rating ?? '-' }}
@csrf @method('DELETE')
{{ $testimonials->render() }}
@else
Belum ada data. Silahkan tambahkan testimonial baru.
@endif
@stop @section('css') @stop