@extends('layouts.app') @section('title', 'فاتورة - طلب رقم #' . $order->id) @section('content')
فاتورة
@endifالصنف | الكمية | السعر الواحد |
---|---|---|
{{ $item->product->name }}
@if($item->notes)
ملاحظة: {{ $item->notes }} @endif |
{{ $item->quantity }} | {{ $currencySymbol }} {{ number_format($item->price ?: 0, 2) }} |
المجموع الفرعي: | {{ $currencySymbol }} {{ number_format($order->total_amount, 3) }} |
الخصم: | -{{ $currencySymbol }} {{ number_format($order->discount, 3) }} |
الضريبة: | {{ $currencySymbol }} {{ number_format($order->tax, 3) }} |
المبلغ الإجمالي: | {{ $currencySymbol }} {{ number_format($order->final_amount, 3) }} |
طريقة الدفع | التاريخ | المبلغ | الحالة |
---|---|---|---|
{{ ucfirst($payment->payment_method) }} | {{ $payment->created_at->format('d-m-Y H:i') }} | {{ $currencySymbol }} {{ number_format($payment->amount, 3) }} | @if($payment->status === 'completed') مكتمل @else قيد المعالجة @endif |
{{ $order->notes }}
{{ $receiptFooter }}
@elseشكراً لزيارتكم!
نتطلع لرؤيتكم مرة أخرى قريباً.
@endif