@extends('user.master') @section('title', 'Home') @section('content')
Find Cars For Sale And For Rent Near You

Find Your Dream Car

@if (isset($sliders) && $sliders->count() > 0) @foreach ($sliders as $slider)
{{ $slider->title }}
@endforeach @else {{-- Fallback placeholder if no sliders --}}
@endif

Browse By Brand

@foreach ($brands as $brand) @endforeach
@if ($bannerBR1 || $bannerBR2)
@if ($bannerBR1)
{{-- Image removed as per requirement --}}
@endif @if ($bannerBR2)
{{-- Image removed as per requirement --}}
@endif
@endif

About Patel Brothers Car Dealers

Trusted Car Dealers & Reliable Car Rental Services in Your City

Patel Brothers Car Dealers is a trusted name in car rental and vehicle dealing, offering well-maintained cars at affordable prices. We are committed to providing a smooth, transparent, and hassle-free car rental experience for individuals, families, and business customers.

Whether you need a car for daily use, travel, events, or long-term rental, Patel Brothers Car Dealers ensures quality vehicles, honest pricing, and customer-focused service.

  • Affordable car rental services with well-maintained vehicles
  • Transparent pricing with no hidden charges
  • Trusted local car dealer with customer satisfaction focus

Explore All Vehicles

@forelse($exploreCars as $car) @php $bodyTypeSlug = $car->bodyType->slug ?? strtolower(str_replace(' ', '-', $car->bodyType->body_type_name ?? '')); @endphp
{{ $car->brand->brand_name ?? '' }} {{ $car->carModel->model_name ?? '' }}
₹{{ number_format($car->price, 0) }}
{{ $car->brand->brand_name ?? '' }} {{ $car->carModel->model_name ?? '' }} {{ $car->year ?? '' }}

{{ Str::limit(strip_tags($car->description ?? 'Premium quality vehicle'), 50) }}

{{ $car->km_driven ?? '0' }} Km
{{ $car->fuelType->fuel_type_name ?? 'N/A' }}
{{ $car->transmission->transmission_name ?? 'N/A' }}
@empty
No cars found

Please check back later for available vehicles.

@endforelse

{{ $websiteSetting->cars_for_sale_count ?? 356 }} M

Cars For Sale

{{ $websiteSetting->dealer_reviews_count ?? 546 }} M

Dealer Reviews

{{ $websiteSetting->visitors_per_day_count ?? 956 }} M

Visitors Per Day

{{ $websiteSetting->verified_dealers_count ?? 856 }} M

Verified Dealers

Latest Cars

@forelse($latestCars as $car)
{{ $car->brand->brand_name ?? '' }} {{ $car->carModel->model_name ?? '' }}
₹{{ number_format($car->price, 0) }}
{{ $car->brand->brand_name ?? '' }} {{ $car->carModel->model_name ?? '' }} {{ $car->year ?? '' }}

{{ Str::limit(strip_tags($car->description ?? 'Premium quality vehicle'), 50) }}

{{ $car->km_driven ?? '0' }} Km
{{ $car->fuelType->fuel_type_name ?? 'N/A' }}
{{ $car->transmission->transmission_name ?? 'N/A' }}
@empty
No cars found

Please check back later for available vehicles.

@endforelse

Why Choose Patel Brothers Car Dealers?

Patel Brothers Car Dealers is a trusted car rental and vehicle dealership known for quality service, reliable cars, and customer satisfaction. We focus on delivering well-maintained vehicles with transparent pricing and a smooth booking experience.

Whether you need a car for daily travel, family trips, business use, or special occasions, we ensure comfort, safety, and value for money with every rental.

Patel Brothers Car Dealers - Trusted Car Rental Service
Wide Range of Cars
Wide Range of Vehicles

Choose from a variety of well-maintained cars including sedan, SUV, luxury, and family vehicles to suit every travel need.

Transparent Pricing
Transparent & Affordable Pricing

No hidden charges. Clear rental terms and fair pricing ensure complete peace of mind for our customers.

Trusted Car Dealer
Trusted by Customers

We are trusted by many happy customers for our honest service, reliable vehicles, and customer-first approach.

Well Maintained Cars
Well-Maintained & Safe Cars

All vehicles are regularly serviced and safety-checked to ensure a smooth, comfortable, and secure driving experience.

What Our Customers Say

@if (isset($testimonials) && $testimonials->count() > 0) @foreach ($testimonials as $index => $testimonial)
@php $genderImage = 'male.avif'; if (!empty($testimonial->gender)) { if (strtolower($testimonial->gender) === 'female') { $genderImage = 'female.avif'; } else { $genderImage = 'male.avif'; } } @endphp {{ $testimonial->customer_name }}

{{ $testimonial->customer_name }}

@for ($i = 1; $i <= 5; $i++) @if ($i <= $testimonial->star_rating) Star @else Empty Star @endif @endfor

{{ $testimonial->remark ?? 'No comment provided.' }}

@endforeach @else

Customer

No testimonials available yet. Check back soon!

@endif
@if(isset($websiteSetting) && !empty($websiteSetting->youtube_video_url)) @php // Convert YouTube URL to embed format $youtubeUrl = $websiteSetting->youtube_video_url; $embedUrl = ''; // Extract video ID from different YouTube URL formats if (preg_match('/(?:youtube\.com\/watch\?v=|youtu\.be\/|youtube\.com\/embed\/)([a-zA-Z0-9_-]+)/', $youtubeUrl, $matches)) { $videoId = $matches[1]; $embedUrl = 'https://www.youtube.com/embed/' . $videoId; } elseif (strpos($youtubeUrl, 'youtube.com/embed/') !== false) { // Already in embed format $embedUrl = $youtubeUrl; } @endphp @if(!empty($embedUrl))

Want To Know More About Us? Play Our Promotional Video Now!

@endif @endif

Newsletter

Subscribe to our newsletter and stay updated with our offer

@csrf
@endsection @section('javascript') @endsection