@extends('layouts.master') @section('title') Testimonials List @endsection @section('css') @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Testimonials @endslot @slot('title') List @endslot @endcomponent @include('partials.session')

Testimonials List

@foreach ($testimonials as $key => $t) @endforeach
Sr. First Name Last Name Review Approved Datetime Action
{{ $key + 1 }} {{ $t->first_name ?? 'N/A' }} {{ $t->last_name ?? 'N/A' }} {{ $t->review ?? 'No Review Provided' }} {{ $t->approved ? 'True' : 'False' }} {{ $t->created_at->diffForHumans() ?? '' }}
@endsection @section('script') @endsection