@extends('layouts.admin') @section('page_title','Reviews') @section('content')

Add Review

@csrf

All Reviews

@foreach($reviews as $r) @endforeach
NameReviewRatingStatusActions
{{ $r->name }}@if($r->designation)
{{ $r->designation }}@endif
{{ Str::limit($r->review,60) }} {{ str_repeat('⭐',$r->rating) }} @if($r->is_active)Active@elseHidden@endif
@csrf @method('PUT')
@csrf @method('DELETE')
@endsection