@lang('site.id number')({{$car->id}})
{{ round($car->carReview2()) ?? 0}}
{{$car->carComment->count() ?? 0}} @lang('site.comments')
{!! strip_tags(html_entity_decode($car->name ?? '')) !!}
{!! strip_tags(html_entity_decode(strlen($car->description) > 90 ? substr($car->description, 0, 90) . '...' : $car->description ?? '')) !!}
{{-- {!! strip_tags(html_entity_decode($car->description ?? '')) !!} --}}
{{-- {!! html_entity_decode(substr($car->description , 0, 125)) !!} --}}
{{$car->car_numbers ?? ''}}
{{$car->year ?? ''}}
@if ($car->fixed_price != null)
@lang('site.price_day'):
{{ $car->fixed_price ? $car->fixed_price . ' ' . ($car->country->currency_ar ?? '') : '' }}
@else
@lang('site.price based on dayes')
@endif