@extends('layouts.main.app') @section('head') @include('layouts.main.headersection',[ 'title'=> __('Features'), 'buttons'=>[ [ 'name'=>' '.__('Create Testimonial'), 'url'=>'#', 'components'=>'data-toggle="modal" data-target="#addRecord" id="add_record"', 'is_button'=>true ] ] ]) @endsection @section('content')

{{ __('Testimonials') }}

@foreach($posts ?? [] as $post) @endforeach
{{ __('Reviewer Name') }} {{ __('Reviewer Position') }} {{ __('Comment') }} {{ __('Ratings') }} {{ __('Action') }}
{{ Str::limit($post->title,30) }} {{ Str::limit($post->slug,30) }} {{ Str::limit($post->excerpt->value ?? '',50) }} {{ $post->lang }} {{ __('Star') }}
@endsection @push('js') @endpush