@if (count($testimonials) > 0)
@if (session()->has('message'))
{{ session('message') }}
@endif

Available Testimonials:

@foreach ($testimonials->sortDesc() as $testimony)

{{date('l d M, Y', strtotime($testimony->created_at))}} at {{date('h:i A', strtotime($testimony->created_at))}}

{{$testimony->description}}
@if ($testimony->video != null)
@endif

@if ($testimony->status == 0) @else @endif
@endforeach @endif