@extends('frontend.layout.dashboard-master') @section('site_title', __('Reply to Review')) @section('content') @php $clientUser = \App\Models\User::find($find_login_user_order->user_id); $clientName = $clientUser ? $clientUser->first_name . ' ' . $clientUser->last_name : __('Client'); if ($clientUser?->image) { if (cloudStorageExist() && in_array(\Illuminate\Support\Facades\Storage::getDefaultDriver(), ['s3','cloudFlareR2','wasabi'])) { $clientImage = render_frontend_cloud_image_if_module_exists('profile/'.$clientUser->image, load_from: $clientUser->load_from ?? ''); } else { $clientImage = asset('assets/uploads/profile/'.$clientUser->image); } } else { $clientImage = asset('assets/static/img/author/author.jpg'); } if (auth()->user()->image) { if (cloudStorageExist() && in_array(\Illuminate\Support\Facades\Storage::getDefaultDriver(), ['s3','cloudFlareR2','wasabi'])) { $myImage = render_frontend_cloud_image_if_module_exists('profile/'.auth()->user()->image, load_from: auth()->user()->load_from ?? ''); } else { $myImage = asset('assets/uploads/profile/'.auth()->user()->image); } } else { $myImage = asset('assets/static/img/author/author.jpg'); } $stars = $client_rating ? round($client_rating->rating * 2) / 2 : 0; @endphp {{-- Back link --}}
{{ $clientName }}
{{ $client_rating->created_at?->toFormattedDateString() }}
{{ $client_rating->review_feedback }}
@endif @else{{ __('Client has not submitted a review yet.') }}
@endif{{ auth()->user()->first_name }} {{ auth()->user()->last_name }}
{{ $freelancer_reply->created_at?->toFormattedDateString() }}
{{ $freelancer_reply->review_feedback }}
{{ __('Order') }}
#{{ str_pad($id, 6, '0', STR_PAD_LEFT) }}
{{ __('Rating') }}