@extends('layouts.app') @section('title', 'My Rating History') @section('content')
All reviews you've submitted
Total Ratings
Average Rating
Last 30 Days
{{ $review->comment }}
Status: @php $statusColors = [ 'pending' => 'warning', 'processing' => 'info', 'preparing' => 'primary', 'ready' => 'success', 'on_delivery' => 'info', 'completed' => 'success', 'cancelled' => 'danger', ]; $status = $review->order->status; $statusColor = $statusColors[$status] ?? 'secondary'; @endphp {{ ucfirst($status) }}
Type: {{ ucfirst($review->order->order_type) }}
Items: {{ $review->order->items->count() ?? 0 }}
@elseOrder details not available
@endifYou haven't rated any orders yet. After completing an order, you can rate it to help us improve our service.
View My Orders"{{ Str::limit($recent->comment, 50) }}"
@endifNo recent activity
@endif