@extends('admin.layouts.master')
@section('title', 'List of Testimonials')
@section('content')
| # |
Image |
Name |
Status |
Order No |
Actions |
@foreach ($testimonials as $id => $testimonial)
| {{ ++$id }} |
|
{{ $testimonial->name }}
|
@if ($testimonial->status == 1)
Published
@else
Un-Published
@endif
|
{{ $testimonial->order_no }} |
|
@endforeach
@endsection