@section('optional_css') @endsection @section('optional_js') @endsection

{{ __('Testimonial') }}

@if(session('success')) {{ session('success') }} @endif @if(session('delete')) {{ session('delete') }} @endif @if(!empty($settings) && count($settings) > 0)
{{ __('Setting') }} @csrf @method('PUT') @foreach($settings as $setting)
{{ $setting->name }}
@if($setting->type == 'string') @endif @if($setting->type == 'integer') @endif @if($setting->type == 'text') @endif @if($setting->type == 'image')
Select Image Remove

Upload image if change featured image

@endif
@endforeach {{ __('Save') }}
@endif {{ __('Testimonial') }} @can('testimonial.create') {{ __('Create') }} {{ __('Testimonial') }} @endcan
@forelse($testimonials as $testimonial) @empty @endforelse
{{ __('Name') }} {{ __('Profession') }} {{ __('Testimonial') }} {{ __('Photo') }} {{ __('Status') }} {{ __('Action') }}
{{ $testimonial->name }} {{ $testimonial->profession }} {{ $testimonial->testimonial }} {{ $testimonial->publish?'Publish':'Draft' }} @can('testimonial.edit') {{ __('Edit') }} @endcan @can('testimonial.destroy')
@csrf @method('delete') {{ __('Delete') }}
@endcan
{{ __('Empty') }}
{{ $testimonials->links('vendor.pagination.bootstrap-4') }}