@extends('themes.backend.layouts.app') @section('dataTables') @stop @section('breadcrumb') {{ Breadcrumbs::render('testimonial.index') }} @endsection @section('content')
{{ __('testimonial.all_txt') }}
@if($roleRights['add']) @endif @if($roleRights['delete']) @if( count( $dataListModel ) > 0 )   @endif @endif
{{ csrf_field() }}
@if($roleRights['delete']) @if( count( $dataListModel ) > 0 ) @endif @endif @if( count($dataListModel) > 0 ) @foreach( $dataListModel as $key => $record ) @if($roleRights['delete']) @endif @endforeach @else @endif
{{ __('testimonial.name_txt') }} {{ __('testimonial.prof_pic_txt') }} {{ __('testimonial.company_txt') }} {{ __('testimonial.designation_txt') }} {{ __('admin.order_txt') }} {{ __('admin.status_txt') }} {{ __('admin.mdfy_date_txt') }} {{ __('admin.mdfy_by_txt') }}
@if($roleRights['edit']) {{ $record->name }} @else {{ $record->name }} @endif @if( $record->media != null ) @endif {{ $record->company }} {{ $record->designation }} {{ $record->c_order > 0 ? $record->c_order : '' }} {{ date($listDataAtrArr['mdfy_dt_frmt'], strtotime($record->updated_at)) }} {{ $record->updatedby->display_name ?? $listDataAtrArr['unknown_txt'] }}
{{ __('message.data_not_available') }}
@stop