@extends('layouts.main_frontend') @section('content') {{-- {{dd("ss")}} --}}

@lang('site.Customer reviews')

@foreach($car->carComment as $comment)
{{-- @if(!empty($comment->user->image)) UserName @else UserName @endif --}}

{{$comment->user->firstname ?? ''}} {{$comment->user->lastname ?? ''}}
{{-- @if(!empty($comment->user->country->flag_image)) flag-icon @else flag-icon @endif --}}

{!! strip_tags(html_entity_decode($comment->description ?? '')) !!} {{-- {!! html_entity_decode(substr($comment->description, 0, 125)) !!} --}}

{{$comment->rating ?? 0}}
{{--
--}}
@endforeach
{{-- --}}
@endsection