@extends('layouts.app') @section('title', 'طباعة عرض سعر') @section('page_title', 'طباعة عرض السعر ' . $quotation->code) @section('page_actions') رجوع @endsection @section('content')
| الاسم: | {{ $quotation->customer?->display_name ?? $quotation->lead?->name ?? '—' }} | الجوال: | {{ $client?->phone ?? '—' }} |
| المدينة: | {{ $client?->city ?? '—' }} | الرقم الضريبي: | {{ $quotation->customer?->tax_number ?? '—' }} |
| م | البيان | الكمية | السعر | الخصم | الضريبة | الإجمالي |
|---|---|---|---|---|---|---|
| {{ $i + 1 }} | {{ $item->description }} | {{ (float) $item->quantity }} | {{ currency($item->price, false) }} | {{ currency($item->discount, false) }} | {{ currency($item->tax_amount, false) }} | {{ currency($item->total, false) }} |
| الإجمالي قبل الضريبة | {{ currency($quotation->subtotal) }} |
| ضريبة القيمة المضافة | {{ currency($quotation->tax) }} |
| خصم إضافي | - {{ currency($quotation->discount) }} |
| الإجمالي المستحق | {{ currency($quotation->total) }} |