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

{{ __('translate.Explore Popular Brand') }}

@foreach ($brands as $index => $brand)
@endforeach
@if ($home2_ads->status == 'enable') @endif
{{ __('translate.Available Brand Car') }}

{{ __('translate.Latest Car Listings') }}

@foreach ($new_cars as $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
@foreach ($used_cars as $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
{{ __('translate.Looking for Subscription') }}

{{ __('translate.Choose Our Pricing Plans') }}

@foreach ($subscription_plans as $index => $subscription_plan)

{{ $subscription_plan->plan_name }}

@if (Session::get('currency_position') == 'before_price') {{ Session::get('currency_icon') }}{{ $subscription_plan->plan_price }} @elseif (Session::get('currency_position') == 'before_price_with_space') {{ Session::get('currency_icon') }} {{ $subscription_plan->plan_price }} @elseif (Session::get('currency_position') == 'after_price') {{ $subscription_plan->plan_price }}{{ Session::get('currency_icon') }} @elseif (Session::get('currency_position') == 'after_price_with_space') {{ $subscription_plan->plan_price }} {{ Session::get('currency_icon') }} @endif @if ($subscription_plan->expiration_date == 'monthly') /{{ __('translate.Monthly') }} @elseif ($subscription_plan->expiration_date == 'yearly') /{{ __('translate.Yearly') }} @elseif ($subscription_plan->expiration_date == 'lifetime') /{{ __('translate.Lifetime') }} @endif

  • {{ __('translate.Duration') }} : @if ($subscription_plan->expiration_date == 'monthly') {{ __('translate.Monthly') }} @elseif ($subscription_plan->expiration_date == 'yearly') {{ __('translate.Yearly') }} @elseif ($subscription_plan->expiration_date == 'lifetime') {{ __('translate.Lifetime') }} @endif
  • {{ __('translate.Maximum Listings') }} : {{ $subscription_plan->max_car }}
  • @if($subscription_plan->featured_car == 0)
  • {{ __('translate.Featured Listing') }}
  • @else
  • {{ __('translate.Featured Listing') }}
  • @endif
  • {{ __('translate.Number of Featured') }} : {{ $subscription_plan->featured_car }}
  • {{ __('translate.Listing Image') }} : {{ __('translate.Unlimited') }}
  • {{ __('translate.Features & Aminities') }}
  • {{ __('translate.24/7 Hours Help') }}
{{ __('translate.Enroll Now') }}
@endforeach
{{ __('translate.Our Dealers') }}

{{ __('translate.Our Popular Dealers') }}

@foreach ($dealers as $index => $dealer)
icon

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

{{ __('translate.Total Cars') }} {{ $dealer->total_car }}
@endforeach
{{ __('translate.Recent News') }}

{{ __('translate.Read Our Latest Blogs') }}

@endsection