@extends('layouts.print') @section('css') @endsection @section('content')
| {{ __('Product') }} | {{ __('Quantity') }} | {{ __('Subtotal') }} |
|---|---|---|
| {{ __('Product') }} : {{ $orderItem->product_name }}
@if (!empty($orderItem->options_flatten))
{{ __('Options') }} : {{ $orderItem->options_flatten }} @endif @if ($orderItem->slicing_method) {{ __('Slicing Method') }} : {{ $orderItem->slicing_method->name }} @endif |
{{ $orderItem->quantity }} | {{ number_format($orderItem->price, 2) }} |
| ملاحظات :{{ $orderItem->note }} | ||
| {{ number_format($order->sub_total, 2) }} |
| {{ __('Total') }} | |
|---|---|
| {{ __('Subtotal') }} | {{ number_format($order->sub_total, 2) }} |
| {{ __('Tax') }} | {{ number_format($order->tax, 2) }} |
| {{ __('Discount Amount') }} | {{ number_format($order->coupon_code_amount + $discounted_amount_total, 2) }} - |
| {{ __('Delivery Fee') }} | --}} {{--{{ number_format($order->delivery_fee ?? '0', 2) }} + --}} {{-- | --}} {{--
| {{ __('Total') }} | {{ number_format($order->total, 2) }} |
| {{ __('Total') }} | |
|---|---|
| {{ __('Subtotal') }} | {{ number_format($order->sub_total, 2) }} |
| {{ __('Tax') }} | {{ number_format($order->tax, 2) }} |
| {{ __('Discount Amount') }} | {{ number_format($order->coupon_code_amount + $discounted_amount_total, 2) }} - |
| {{ __('Total') }} | {{ number_format($order->total, 2) }} |