@extends('layouts.frontend') @section('title', 'عقودي - TQ CARS') @section('content')
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif

قائمة العقود والاتفاقيات

@forelse($rentals as $rental)
@php $car = $rental->car; $img = $car->mainImage ? asset('storage/'.$car->mainImage->path) : asset('images/login-bg.png'); @endphp

{{ $rental->car->title }}

{{ $rental->status == 'active' ? 'نشط' : 'منتهي' }}
📅 من: {{ $rental->start_date->format('Y-m-d') }}
📅 إلى: {{ $rental->end_date->format('Y-m-d') }}
💰 السعر اليومي: {{ number_format($rental->daily_price) }} ر.س
💳 الإجمالي: {{ number_format($rental->total_amount) }} ر.س
@empty
📄
لا توجد عقود مسجلة حالياً.
@endforelse
{{ $rentals->links() }}
@endsection