@extends('user.master') @section('title', 'Car Listing') @section('content')

Car Listing

Home > Car Listing

Showing {{ $cars->firstItem() ?? 0 }}-{{ $cars->lastItem() ?? 0 }} of {{ $cars->total() }} Listings
@include('user.partials.listing-results', ['cars' => $cars])
@include('user.partials.listing-pagination', ['cars' => $cars])
{{-- Heading --}}
Search Cars
{{-- Brand --}}
{{-- Year --}}
{{-- Body Type --}}
{{-- Transmission --}}
{{-- Fuel Type --}}
{{-- Seater --}}
{{-- Engine Type --}}
{{-- Ownership --}}
{{-- Color --}}

COLOR

    @foreach ($colors as $color)
  • id, (array) request('color')) ? 'checked' : '' }}>
  • @endforeach
{{-- Price --}}

Price

{{-- Button --}}
@endsection @section('css') @endsection @section('javascript') @endsection