@extends('layouts.app') @section('title', 'طباعة فاتورة') @section('page_title', 'طباعة الفاتورة ' . $invoice->code) @section('page_actions') رجوع @endsection @section('content')
| الاسم: | {{ $invoice->customer?->display_name ?? '—' }} | الجوال: | {{ $invoice->customer?->phone ?? '—' }} |
| العنوان: | {{ $invoice->customer?->city }} {{ $invoice->customer?->address }} | الرقم الضريبي: | {{ $invoice->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($invoice->subtotal) }} |
| ضريبة القيمة المضافة | {{ currency($invoice->tax) }} |
| خصم إضافي | - {{ currency($invoice->discount) }} |
| الإجمالي المستحق | {{ currency($invoice->total) }} |
| المدفوع | {{ currency($invoice->paid_amount) }} |
| المتبقي | {{ currency($invoice->remaining) }} |