@extends('layouts.admin-layout')
@section('title', 'All Testimonial ')
@section('content')
Testimonial Section
| S.N. |
Heading |
Customer Name |
Image |
status |
Action |
@foreach($get_testimonial as $testimonial)
| {{ $loop->iteration }} |
{{$testimonial->heading ? : ''}} |
{{$testimonial->customer_name ? : ''}} |
|
{{$testimonial->status === 1 ? 'Approve' : 'Not Approve'}}
|
|
@endforeach
@endsection
@section('script')
@endsection