@extends('admin/layouts.master') @section('title', 'All Testimonialss - Admin') @section('maincontent') @include('admin.layouts.topbar',$data)
{{ __("Do you really want to delete these records? This process cannot be undone.")}}
# | {{ __('Image') }} | {{ __('Client Name') }} | {{ __('Rating') }} | {{ __('Status') }} | {{ __('Action') }} |
---|---|---|---|---|---|
{{$key+1}} | {{$p->client_name}} | @for($i = 1; $i <= 5; $i++) @if($i<=$p->rating) @else @endif @endfor |
@can('front-settings.testimonial.edit')
{{ __("Edit")}}
@endcan
@can('front-settings.testimonial.delete')
{{ __("Delete")}}
@endcan
|