Testimonials
List of Testimonial
@if(check_route_access('testimonials.add.form'))
@endif
@include('admin.includes.status')
@if (!empty($testimonial_data))
@foreach($testimonial_data as $testimonial)
@php
$status = ($testimonial->status == 1) ? "Active" : "De-Active";
$status_class = ($testimonial->status == 1) ? "success" : "danger";
$imgurl = empty(get_url('testimonial/'.$testimonial->id.'/crop/'.$testimonial->image))
? url("assets/images/noimage.png")
: get_url('testimonial/'.$testimonial->id.'/crop/'.$testimonial->image);
@endphp
@endforeach
@endif
Title |
Client Name |
Client Country |
Status |
Action |
{{ $testimonial->title }} |
{{ $testimonial->client_name }} |
{{ get_country_name($testimonial->client_country) }} |
{{ $status }}
|
@if(check_route_access('testimonials.edit.form'))
@endif
@if(check_route_access('testimonials.delete'))
@endif
|