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

Review Section

Profile Preview

Review Section

@foreach($get_reviews as $reviews) @endforeach
S.N. customer name Star Image status Action
{{ $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'}}
@endsection @section('script') @endsection