الفاتورة

رقم الطلب :

{{ $order->id }}

: Order Number

حالة الطلب :

{{ getOrderStatusName($order->status) }}

: Order status

اسم المستخدم :

{{ $order->user->name ?? "-" }}

: Username

اسم الاسرة المنتجة :

{{ $order->provider->name ?? "-" }}

: Family name

اسم المندوب :

{{ $order->rep->name ?? "-" }}

: Delegate name

طريقة الدفع :

{{ $order->paymentMethod->currentDescription->title ?? "-" }}

: Pay method

حالة الدفع :

{{ __("general.payment_status_$order->payment_status") }}

: Payment Status

تاريخ ووقت الطلب :

{{ $order->created_at }}

:Order date

@foreach($order->products()->get() as $product) @endforeach @if($order->tax_amount) @endif @if($order->delivery_charges) @endif @if($order->coupon_discount) @endif
# اسم المنتج كمية المنتج الإضافات والاختيارات والأحجام السعر الاجمالي للمنتج
{{ $loop->iteration }} {{ $product->currentDescription->title ?? "" }} {{ $product->pivot->qty }} {{ $product->pivot->addons_price ? $product->pivot->addons_price." ".$currency_code : '-' }} {{ $product->pivot->total." ".$currency_code }}
اجمالي سعر المنتجات Total price of the products
{{ $order->subtotal ." ".$currency_code }}
إجمالي الضريبه المضافه Total VAT
{{ $order->tax_amount ." ".$currency_code }}
سعر التوصيل Delievery
{{ $order->delivery_charges ." ".$currency_code }}
قيمة الخصم Discount
{{ $order->coupon_discount ." ".$currency_code }}
إجمالي المبلغ المستحق Total amount due
{{ $order->total ." ".$currency_code }}

شكرا لاستخدامكم تطبيق ترو

@if(is_file(public_path($order->barcode_photo)))
@endif