@extends('layouts.app') @section('content')
{{ app()->getLocale() == 'ar' ? 'العقود النشطة' : 'Active Rentals' }}
{{ $activeRentalsCount }}
{{ app()->getLocale() == 'ar' ? 'إيرادات الشهر' : 'Monthly Revenue' }}
{{ number_format($monthlyRevenue) }} SAR
{{ app()->getLocale() == 'ar' ? 'إجمالي العقود' : 'Total Contracts' }}
{{ $totalContracts }}
{{ app()->getLocale() == 'ar' ? 'سيارات متاحة' : 'Available Cars' }}
{{ $availableCarsCount }}

{{ app()->getLocale() == 'ar' ? 'أحدث العقود' : 'Recent Rentals' }}

{{ app()->getLocale() == 'ar' ? 'عرض الكل' : 'View All' }}
@foreach($recentRentals as $rental) @endforeach
Contract Customer Status Amount
{{ $rental->contract_number }}
{{ $rental->car->title }}
{{ $rental->customer->name }} {{ $rental->status }} {{ number_format($rental->total_amount) }} SAR
@endsection