@extends('panel.layout.app') @section('title', __('Testimonials')) @section('content')
@foreach($testimonialList as $entry) @endforeach
{{__('Avatar')}} {{__('Full Name')}} {{__('Job Title')}} {{__('Testimonial Text')}} {{__('Updated At')}} {{__('Actions')}}
Avatar {{$entry->full_name}} {{$entry->job_title}} {!! $entry->words !!}

{{date("j.n.Y", strtotime($entry->updated_at))}}

{{date("H:i:s", strtotime($entry->updated_at))}}

@if($app_is_demo) @else @endif
@endsection