@extends('layouts.simple.master')
@section('title', 'Contact Master Data')
@section('css')
@endsection
@section('style')
@endsection
@section('breadcrumb-title')
Testimonials
@endsection
@section('breadcrumb-items')
CMS
Testimonials
@endsection
@section('content')
| # |
Image |
Name |
Rating |
Description |
Actions |
@foreach ($testimonials as $key => $testimonial)
| {{$key + 1}} |
@if(!empty($testimonial->image) && Storage::exists($testimonial->image))
@endif
|
{{$testimonial->name}} |
{{$testimonial->value}} |
{{$testimonial->description}} |
|
@endforeach
@endsection
@section('script')
@endsection