@extends('admin.layouts.master') @section('title', ucwords(str_replace('-', ' ', $slug)) . ' | Testimonials') @section('content') @include('admin.page.top-nav')
@include('admin.page.side-nav')
{{-- content --}}

{{ __('Testimonials List') }}

{{ __('Add New Testimonial') }}
@foreach ($testimonials as $id => $testimonial) @endforeach
{{ __('Id') }} {{ __('Name') }} {{ __('Image') }} {{ __('Actions') }}
{{ ++$id }} {{ $testimonial->getTranslation('name', 'en') }} @if ($testimonial->image) {{ $testimonial->getTranslation('name', 'en') }} @endif
@csrf
@endsection