@extends('layouts.main') @section('content')
@if($title)

{{ $title }} @if(!$is_home and !config('app.max_page')) ({{ number_format($cars->total(), 0, ',', ' ') }}) @endif

@endif
@if(isset($cars) and $cars->count())
@foreach($cars as $car) @endforeach
@else
{{ __('app.loading') }}
@endif @if($content)
{!! $content !!}
@endif
@endsection