@extends('layouts.admin-layout') @section('title', 'All Testimonial ') @section('content')
@csrf

Testimonial Section

Profile Preview

Testimonial Section

@foreach($get_testimonial as $testimonial) @endforeach
S.N. customer name Star Image status Action
{{ $loop->iteration }} {{$testimonial->customer_name ? : ''}} @if($testimonial->star_rated) @for($i = 1; $i <= $testimonial->star_rated; $i++) @endfor @for($j = $testimonial->star_rated + 1; $j <= 5; $j++) @endfor @else Not Available @endif {{$testimonial->status === 1 ? 'Approve' : 'Not Approve'}}
@endsection @section('script') @endsection