@foreach ($bookings as $book) @if (!empty($book->car))
image 1
@lang('site.id number')({{ $book->car->id }})
{{ round($book->car->carReview2()) }}
{{ $book->car->carComment->count() ?? 0 }} @lang('site.comments')

{!! strip_tags(html_entity_decode($book->car->name ?? '')) !!}

{!! strip_tags(html_entity_decode($book->car->description ?? '')) !!} {{-- {!! html_entity_decode(substr($book->car->description, 0, 125)) !!} --}}
{{ $book->car->car_numbers }} @lang('site.car_numbers')
{{-- @lang('site.year') --}} {{ $book->car->year ?? '' }}
@lang('site.totalprice'): {{ $book->total_price ?? 0 }}
@if ($book->car->fixed_price != null)
@lang('site.Reservation deposit'):
{{-- {{$book->car->fixed_price ?? 0 }} --}} {{ $book->car->fixed_price ? $book->car->fixed_price . ' ' . ($book->car->country->currency_ar ?? '') : '' }}
@else @endif
@lang('site.booking_status'): @if ($book->bookingStatus->id == 1) @elseif($book->bookingStatus->id == 2) @elseif($book->bookingStatus->id == 3) @elseif($book->bookingStatus->id == 5) @else @endif
{{ $book->bookingStatus->status ?? '' }}
{{--
@lang('site.booking_status'):
{{ $book->bookingStatus->status ?? '' }}
--}}
@else @unless (count($bookings))
@lang('site.No Favourite')
empty icon
@endunless @endif @endforeach