@extends('layouts.app') @section('content')
| {{ app()->getLocale() == 'ar' ? 'البيان' : 'Description' }} | {{ app()->getLocale() == 'ar' ? 'اللوحة' : 'Plate' }} | {{ app()->getLocale() == 'ar' ? 'أيام التأجير' : 'Rental Days' }} | {{ app()->getLocale() == 'ar' ? 'أيام التوقف' : 'Idle Days' }} | {{ app()->getLocale() == 'ar' ? 'الإشغال %' : 'Occupancy' }} | {{ app()->getLocale() == 'ar' ? 'الحالة' : 'Status' }} |
|---|---|---|---|---|---|
| {{ $car['title'] }} | {{ $car['plate_number'] }} | {{ $car['rental_days'] }} | {{ $car['idle_days'] }} | {{ $car['occupancy_rate'] }}% | {{ $car['occupancy_status'] }} |
|
{{ app()->getLocale() == 'ar' ? 'الإيرادات' : 'Revenue' }}
{{ number_format($car['revenue'], 2) }} SAR
{{ app()->getLocale() == 'ar' ? 'المصاريف' : 'Expenses' }}
{{ number_format($car['expenses'], 2) }} SAR
{{ app()->getLocale() == 'ar' ? 'الصيانة' : 'Maintenance' }}
{{ number_format($car['maintenance'], 2) }} SAR
{{ app()->getLocale() == 'ar' ? 'الربح' : 'Profit' }}
{{ number_format($car['profit'], 2) }} SAR
{{ app()->getLocale() == 'ar' ? 'نسبة الربح' : 'Margin' }}
{{ $car['profit_margin'] }}%
{{ app()->getLocale() == 'ar' ? 'التقييم' : 'Rating' }}
{{ $car['rating'] }}
|
|||||