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

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

@forelse ($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 }}
@empty

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

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

@endforelse
@if ($dealers->hasPages()) {{ $dealers->links('pagination_box') }} @endif
@endsection