@extends('layouts.app') @section('title', 'عرض سعر') @section('content')

عرض السعر

@if(!empty($setting?->company_logo_path)) شعار الشركة @else
LOGO
@endif
{{ $setting->company_name ?? '—' }}
العنوان : {{ $setting->company_address ?? '—' }}
رقم ضريبي: {{ $setting->company_tax_number ?? '—' }}
هاتف: {{ $setting->company_phone ?? '—' }}
@if(!empty($qrCodeSvg))
رمز عرض السعر (ZATCA)
{!! $qrCodeSvg !!}
@endif

عرض سعر

رقم العرض
{{ $quote->number }}
الرقم المرجعي
{{ 'REF-' . $quote->id }}
التاريخ
{{ $quote->date }}

بيانات العميل

الاسم
{{ $quote->customer_name }}
رقم الهاتف
{{ $quote->customer_phone }}
@if(!empty($quote->customer_address))
العنوان
{{ $quote->customer_address }}
@endif @if(!empty($quote->customer_tax_number))
الرقم الضريبي للعميل
{{ $quote->customer_tax_number }}
@endif

الخدمات

@forelse($quote->items as $i => $item) @empty @endforelse
# الوصف الكمية سعر الوحدة الإجمالي الفرعي
{{ $i + 1 }} {{ $item['description'] }} {{ $item['quantity'] }} {{ number_format($item['unit_price'], 2) }} ر.س {{ number_format($item['unit_price'] * $item['quantity'], 2) }} ر.س
لا توجد بنود لهذا العرض
الإجمالي الفرعي
{{ number_format($quote->subtotal, 2) }} ر.س
ضريبة القيمة المضافة (15%)
{{ number_format($quote->tax, 2) }} ر.س
الإجمالي النهائي
{{ number_format($quote->total, 2) }} ر.س
جميع الحقوق محفوظة © {{ now()->year }} لـ {{ $setting->company_name ?? '—' }}
@endsection