@extends('layouts.app') @section('content')
| {{ app()->getLocale() == 'ar' ? 'رقم المطالبة' : 'Claim #' }} | {{ app()->getLocale() == 'ar' ? 'السيارة' : 'Car' }} | {{ app()->getLocale() == 'ar' ? 'تاريخ الحادث' : 'Accident Date' }} | {{ app()->getLocale() == 'ar' ? 'التقدير' : 'Est. Cost' }} | {{ app()->getLocale() == 'ar' ? 'نسبة التحمل' : 'Deductible' }} | {{ app()->getLocale() == 'ar' ? 'الحالة' : 'Status' }} | {{ app()->getLocale() == 'ar' ? 'العمليات' : 'Actions' }} |
|---|---|---|---|---|---|---|
| {{ $claim->claim_number }} |
{{ $claim->car->brand?->name }} ({{ $claim->car->plate_number }})
@if($claim->rental)
{{ app()->getLocale() == 'ar' ? 'عقد #' : 'Contract #' }}{{ $claim->rental->contract_number }}
@endif
|
{{ $claim->accident_date->format('Y-m-d') }} | {{ number_format($claim->estimated_damage_cost, 2) }} | {{ number_format($claim->deductible_paid, 2) }} | {{ $claim->claim_status }} | {{ app()->getLocale() == 'ar' ? 'عرض' : 'View' }} |
| {{ app()->getLocale() == 'ar' ? 'لا توجد مطالبات مسجلة' : 'No claims found' }} | ||||||