@extends('admin.layout.app') @section('content')

Testimonials

Add Testimonial
@if (session('success'))
{{ session('success') }}
@endif
@forelse ($testimonials as $key => $testimonial) @empty @endforelse
# Video Link Status Action
{{ $key + 1 }} @if ($testimonial->video_link) @else No Video @endif @if ($testimonial->status == 'active') Active @else Inactive @endif
@csrf @method('DELETE')
No testimonials found.
{{-- Pagination (if used) @if(method_exists($testimonials, 'links'))
{{ $testimonials->links('pagination::bootstrap-4') }}
@endif --}}
@endsection