@extends('layouts.admin') {{trans('home.testimonials')}} @section('content')
@if(session()->has('success'))
{{ session()->pull('success') }}
@endif
{{trans('home.testimonials')}}

{{trans('home.table_contain_all_data_shortly_you_can_view_more_details')}}


@foreach($testimonials as $testimonial) @endforeach
{{trans('home.id')}} {{trans('home.name')}} {{trans('home.image')}} {{trans('home.status')}}
{{$testimonial->id}} {{$testimonial->name}} @if($testimonial->img) @else @endif @if($testimonial->status == 1) {{trans('home.yes')}} @else {{trans('home.no')}} @endif
@endsection