@extends('panel.layout.app', ['disable_tblr' => true])
@section('title', __('Testimonials'))
@section('titlebar_actions')
    
        
        {{ __('Add New') }}
    
@endsection
@section('content')
    
        
            
                
                    | 
                        {{ __('Avatar') }}
                     | 
                    
                        {{ __('Full Name') }}
                     | 
                    
                        {{ __('Job Title') }}
                     | 
                    
                        {{ __('Testimonial Text') }}
                     | 
                    
                        {{ __('Updated At') }}
                     | 
                    
                        {{ __('Actions') }}
                     | 
                
            
            
                @foreach ($testimonialList as $entry)
                    
                        
                             
                         | 
                        
                            {{ $entry->full_name }}
                         | 
                        
                            {{ $entry->job_title }}
                         | 
                        {!! $entry->words !!} | 
                        
                             
                                {{ date('j.n.Y', strtotime($entry->created_at)) }}
                                
                                    {{ date('H:i:s', strtotime($entry->created_at)) }}
                                
                             
                         | 
                        
                            @if ($app_is_demo)
                                
                                    
                                
                                
                                    
                                
                            @else
                                
                                    
                                
                                
                                    
                                
                            @endif
                         | 
                    
                @endforeach
            
        
     
@endsection