@if(count($testimonials)>0)
| ID |
Name |
Position |
Photo |
Status |
Action |
@foreach($testimonials as $testimonial)
| {{$testimonial->id}} |
{{$testimonial->name}} |
{{$testimonial->position}} |
@if($testimonial->photo)
@else
@endif
|
@if($testimonial->status=='active')
{{$testimonial->status}}
@else
{{$testimonial->status}}
@endif
|
@if(auth()->check() && auth()->user()->canEdit())
@endif
@if(auth()->check() && auth()->user()->canDelete())
@endif
|
@endforeach
@else
No testimonials found!!! Please add testimonial
@endif