@extends('admin.layouts.app') @section('content')
{{-- navbar - top --}} @include('admin.layouts.topbar')
{{-- navbar - side --}} @include('admin.layouts.nav')

{{ __('Testimonials') }}

@if(Request::exists('search')) @else @endif
@forelse ($testimonials as $testimonial) @empty @endforelse
{{ __('Name') }} {{ __('City') }} {{ __('Content') }} {{ __('Created On') }} {{ __('Actions') }}
{{ $testimonial->name }} {{ $testimonial->city }} {{ $testimonial->content }} {{ \Carbon\Carbon::parse($testimonial->created_at)->format('jS F Y') }}
{{ __('Looks like there\'s a VOID!') }}
{{ $testimonials->withQueryString()->render("pagination::bootstrap-5") }}
@endsection @extends('admin.layouts.footer')