@extends('frontend.layout.dashboard-master') @section('site_title', __('My Reviews')) @section('content') {{-- Header --}}
{{ __('All reviews clients have left on your completed orders') }}
{{ __('Total Reviews') }}
{{ $stats->total ?? 0 }}
{{ __('Average Rating') }}
{{ $stats->total ? number_format($stats->average, 1) : '—' }}
@if($stats->total){{ __('Pending Replies') }}
{{ $pending_count }}
{{ $client?->first_name }} {{ $client?->last_name }}
@if($client?->user_verified_status) @endif{{ $review->created_at->toFormattedDateString() }}
{{ $review->review_feedback }}
@endif {{-- Reply --}} @if($reply){{ __('Your Reply') }}
{{ $reply->review_feedback }}
{{ $reply->created_at->toFormattedDateString() }}
{{ __('No Reviews Yet') }}
{{ __('Reviews from clients will appear here once orders are completed.') }}