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