{{ $r->user->name }}

{{ number_format($r->rating, 2) }}/5.00

"{{ $r->review_title }}"

{{-- attention, uses e() native laravel escape function --}} {!! nl2br(e($r->review_content)) !!}

@if($r->attachments()->count())
@foreach($r->attachments as $att) @endforeach
@endif @if(auth()->check() && auth()->user()->id == $r->site->claimed_by)
@csrf {{ __('Update Reply') }}
@endif @if($r->company_reply && auth()->id() != $r->site->claimed_by)
{{__('Company Reply: ')}} {!! nl2br(e($r->company_reply)) !!}
@endif
{{ $r->created_at->format('d/m/Y') }}
{{ $r->upvotes_count }}