@if ($list_items) @foreach ($list_items as $list_item) {{ $loop->iteration }} {{ $list_item->content }} @if ($list_item->status) Active @else Inactive @endif
{{ $list_item->user_name }}
{{ $list_item->designation }}
@if($list_item->rating) @for($i=1; $i<=5; $i++) @endfor ({{ $list_item->rating }}) @else No Rating @endif {{ $list_item->updated_at->format('d-m-Y, g:i A') }} @include('admin.crud.action-dropdown', [ 'cloneUrl' => url('admin/testimonials/'.$list_item->id.'/clone'), 'cloneTitle' => 'Clone Testimonial', 'editUrl' => url('admin/testimonials/'.$list_item->id.'/edit'), 'editTitle' => 'Update Testimonial', 'deleteUrl' => route('admin.testimonials.destroy', $list_item->id), 'redirectUrl' => route('admin.testimonials.index') ]) @endforeach @endif