@extends('layouts.admin-layout')
@section('title', 'All Review ')
@section('content')
Review Section
| S.N. |
customer name |
Star |
Image |
status |
Action |
@foreach($get_reviews as $reviews)
| {{ $loop->iteration }} |
{{$reviews->customer_name ? : ''}} |
@if($reviews->star_rated)
@for($i = 1; $i <= $reviews->star_rated; $i++)
@endfor
@for($j = $reviews->star_rated + 1; $j <= 5; $j++)
@endfor
@else
Not Available
@endif
|
|
{{$reviews->status === 1 ? 'Approve' : 'Not Approve'}}
|
|
@endforeach
@endsection
@section('script')
@endsection