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

{{ html_decode($dealer->name) }} @php $kyc = Modules\Kyc\Entities\KycInformation::where('user_id',$dealer->id)->where('status',1)->first(); @endphp @if($kyc) @endif

{{ __('translate.Send Message To Us') }}

@csrf
@if($google_recaptcha->status==1)
@endif
@if ($dealer->about_me)

{{ __('translate.About Us') }}

{{ html_decode($dealer->about_me) }}

@endif

{{ __('translate.Working Hours') }}

  • {{ __('translate.Sunday') }}{{ html_decode($dealer->sunday) }}
  • {{ __('translate.Monday') }}{{ html_decode($dealer->monday) }}
  • {{ __('translate.Tuesday') }}{{ html_decode($dealer->tuesday) }}
  • {{ __('translate.Wednesday') }}{{ html_decode($dealer->wednesday) }}
  • {{ __('translate.Thursday') }}{{ html_decode($dealer->thursday) }}
  • {{ __('translate.Friday') }}{{ html_decode($dealer->friday) }}
  • {{ __('translate.Saturday') }}{{ html_decode($dealer->saturday) }}

{{ __('translate.Location Map') }}

{{ __('translate.Follow my Social') }}

@if ($dealer_ads->status == 'enable') @endif @if($cars->count() > 0)
  • {{ __('translate.All Car') }}
  • {{ __('translate.Used Car') }}
  • {{ __('translate.New Car') }}
@foreach ($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
@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) }}
@endforeach
@if ($cars->hasPages()) {{ $cars->links('listing_paginate') }} @endif @else

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

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

@endif
@endsection @push('js_section') @endpush