@extends('layouts.frontend') @section('title', 'تصفح السيارات') @section('content')
@forelse($cars as $car)
@php $imagePath = $car->mainImage ? $car->mainImage->path : null; $imageUrl = $imagePath ? (str_starts_with($imagePath, 'http') ? $imagePath : asset('storage/'.$imagePath)) : 'https://images.unsplash.com/photo-1552519507-da3b142c6e3d?auto=format&fit=crop&q=80&w=800'; @endphp {{ $car->title }}
{{ $car->type == 'sale' ? 'للبيع' : ($car->type == 'rent' ? 'للايجار' : 'للبيع/للايجار') }}
{{ $car->dynamic_status['label'] }}

{{ $car->title }}

📅 {{ $car->year }} 🛣️ {{ number_format($car->mileage) }} كم
@if($car->price) {{ number_format($car->price) }} ر.س @elseif($car->daily_price) {{ number_format($car->daily_price) }} ر.س / يوم @endif
عرض التفاصيل
@empty
لم يتم العثور على سيارات تطابق بحثك.
@endforelse
{{ $cars->links() }}
@endsection