@extends('layouts.app') @section('title', 'Review - ' . $review->customer_name) @section('page-title', 'Review from ' . $review->customer_name) @section('content')

{{ $review->customer_name }}

Edit
@csrf @method('DELETE')

Rating

@for($i = 1; $i <= 5; $i++) @endfor {{ $review->rating }}/5

Comment

{{ $review->comment ?? 'No comment' }}

@if($review->source)

Source

{{ $review->source }}

@endif

Created: {{ $review->created_at->format('M d, Y H:i') }}

Updated: {{ $review->updated_at->format('M d, Y H:i') }}

← Back to Reviews
@endsection