@extends('admin/layouts.master') @section('title', 'All Testimonial - Admin') @section('maincontent') @component('components.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('Testimonial') }} @endslot @slot('menu1') {{ __('Front Settings') }} @endslot @slot('menu2') {{ __('Testimonial') }} @endslot @slot('button')
{{ __("Do you really want to delete these records? This process cannot be undone.")}}
# | {{ __('Image') }} | {{ __('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
|