عرض سعر: {{ $quotation->quotation_number }}

@if($quotation->status !== 'CONVERTED')
@csrf
@endif رجوع
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

معلومات العرض

الحالة:
{{ $quotation->status }}
صالح حتى:
{{ $quotation->valid_until?->format('Y-m-d') }}
تاريخ الإنشاء:
{{ $quotation->created_at->format('Y-m-d') }}

معلومات العميل

الاسم:
{{ $quotation->customer?->name }}
البريد:
{{ $quotation->customer?->email }}
@if($quotation->vehicle)
السيارة:
{{ $quotation->vehicle->make }} {{ $quotation->vehicle->model }}
@endif
@foreach($quotation->items as $item) @endforeach
الوصف الكمية سعر الوحدة الإجمالي
{{ $item->description }} {{ $item->quantity }} {{ number_format($item->unit_price, 2) }} {{ number_format($item->total, 2) }}
المجموع الفرعي {{ number_format($quotation->subtotal, 2) }} ج.م
الضريبة (14%) {{ number_format($quotation->tax_amount, 2) }} ج.م
الإجمالي {{ number_format($quotation->total_amount, 2) }} ج.م
@if($quotation->notes)

ملاحظات

{{ $quotation->notes }}

@endif