@extends('super_admins.layouts.master') @section('title') Testimonials @endsection @section('css') @include('super_admins.includes.datatable_css') @endsection @section('content')

Testimonials

@php $params = explode('?', request()->getRequestUri()); $params = $params[1] ?? null; @endphp Export Add
@foreach ($testimonials as $testimonial) @endforeach
Name Image Created at Status Action
{{ $testimonial->name }} @if ($testimonial->image) {{ $testimonial->slug }}     @else - @endif {{ date_format($testimonial->created_at, 'd-m-Y') }} {{ $testimonial->is_active ? 'Active' : 'Inactive' }} @if (!$testimonial->trashed())
{{-- edit --}} {{-- delete --}}
@else
{{-- restore --}} {{-- delete permanently --}}
@endif
@endsection @section('scripts') @include('super_admins.includes.datatable_scripts') @endsection