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

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

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

@if (request()->has('brands')) @php $brand_arr = request()->get('brands'); @endphp @foreach ($brands as $brand) id, $brand_arr) ? 'checked' : '' }} name="brands[]" class="form-check-input" type="checkbox" id="flexCheckDefault-{{ $brand->id }}" value="{{ $brand->id }}"> @endforeach @else @foreach ($brands as $brand) @endforeach @endif
@if ($listing_ads->status == 'enable') @endif
@forelse ($cars as $index => $car)
{{ $car?->brand?->name }}

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

@if($car->owner_name)
{{ __('translate.Owner') }} : {{ html_decode($car->owner_name) }}
@else
{{ __('translate.Listed by') }} : {{ html_decode($car?->dealer?->name) }}
@endif
@empty

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

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

@endforelse
@forelse ($cars as $index => $car)
{{ $car->total_view }}
{{ $car?->brand?->name }}
@if($car->owner_name)
{{ __('translate.Owner') }} : {{ html_decode($car->owner_name) }}
@else
{{ __('translate.Listed by') }} : {{ html_decode($car?->dealer?->name) }}
@endif
@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