@extends('layout') @section('title') {{ $seo_setting->seo_title }} @endsection @section('body-content')

{{ __('translate.Car Listing') }}

@forelse ($cars as $index => $car)
thumb
@if ($car->offer_price)

{{ calculate_percentage($car->regular_price, $car->offer_price) }}% {{ __('translate.Off') }}

@endif @if ($car->condition == 'New' || $car->condition == 'Used')

{{ __('للإيجار') }}

@endif
@guest('web') @else @endif
{{ $car?->brand?->name }}

@if ($car->offer_price) {{ currency($car->offer_price) }} @else {{ currency($car->regular_price) }} @endif

{{ html_decode($car->title) }}

{{--
{{ html_decode($car->mileage) }}
{{ html_decode($car->fuel_type) }}
{{ html_decode($car->engine_size) }}
--}}
{{ __('translate.Listed by') }} :{{ html_decode($car?->dealer?->name) }}
@empty

{{ __('translate.Listing Not Found!') }}

{{ __('translate.Whoops... this information is not available for a moment') }}

@endforelse
@forelse ($cars as $index => $car)
thumb
@if ($car->offer_price)

{{ calculate_percentage($car->regular_price, $car->offer_price) }}% {{ __('translate.Off') }}

@endif @if ($car->condition == 'New')

{{ __('translate.New') }}

@else

{{ __('translate.Used') }}

@endif

@if ($car->offer_price) {{ currency($car->offer_price) }} @else {{ currency($car->regular_price) }} @endif

@guest('web') @else @endif

{{ html_decode($car->title) }}

{{ html_decode($car->mileage) }}
{{ html_decode($car->fuel_type) }}
{{ html_decode($car->engine_size) }}
{{ __('translate.Listed by') }} : {{ html_decode($car?->dealer?->name) }}
@empty

{{ __('translate.Listing Not Found!') }}

{{ __('translate.Whoops... this information is not available for a moment') }}

@endforelse
@if ($cars->hasPages()) {{ $cars->links('pagination_box') }} @endif
@endsection @push('js_section') @endpush