@extends('admin.layout') @if (!empty($abs->language) && $abs->language->rtl == 1) @section('styles') @endsection @endif @section('content')
{{ __('Testimonial Section Image') }}
@if (!empty($langs)) @endif
@csrf
...

{{ __('Testimonials') }}
@if (!empty($langs)) @endif
@if (count($testimonials) == 0)

{{ __('NO TESTIMONIAL FOUND') }}

@else
@foreach ($testimonials as $key => $testimonial) @endforeach
# {{ __('Image') }} {{ __('Name') }} {{ __('Rank') }} {{ __('Serial Number') }} {{ __('Actions') }}
{{ $loop->iteration }} {{ $testimonial->name }} {{ $testimonial->rank }} {{ $testimonial->serial_number }} {{ __('Edit') }}
@csrf
@endif
@endsection