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

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

@forelse ($dealers as $index => $dealer)
@if ($dealer->image) icon @else icon @endif

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

{{ __('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