@extends('layouts.app') @section('title', 'Reviews') @section('page-title', 'Customer Reviews') @section('content')
| Customer | Rating | Comment | Source | Actions |
|---|---|---|---|---|
| {{ $review->customer_name }} |
@for($i = 1; $i <= 5; $i++)
@endfor
{{ $review->rating }}/5
|
{{ Str::limit($review->comment, 50) }} | {{ $review->source ?? '-' }} | View Edit |
| No reviews found | ||||