@extends('admin.layouts.master') @section('content')
@if($item->image)
|
{{ $item->pivot->item_description }} | {{ get_formated_currency($item->pivot->unit_price) }} | x | {{ $item->pivot->quantity }} | {{ get_formated_currency($item->pivot->quantity * $item->pivot->unit_price) }} |
{{ trans('help.empty_cart') }} |
{!! $order->admin_note !!}@endif
{{ trans('app.total') }} | {{ get_formated_currency($order->total) }} |
{{ trans('app.discount') }} | − {{ get_formated_currency($order->discount) }} |
{{ trans('app.shipping') }} @if($order->shippingRate) {{ optional($order->shippingRate)->name }} @php $carrier_name = $order->carrier ? $order->carrier->name : ( $order->shippingRate ? optional($order->shippingRate->carrier)->name : Null); @endphp @if($carrier_name) {{ trans('app.by') . ' ' . $carrier_name }} @endif @else {{ trans('app.custom_shipping') }} @endif |
{{ get_formated_currency($order->shipping) }} |
{{ trans('app.packaging') }} {{ optional($order->shippingPackage)->name }} |
{{ get_formated_currency($order->packaging) }} |
{{ trans('app.handling') }} | {{ get_formated_currency($order->handling) }} |
{{ trans('app.taxes') }} @if($order->shippingZone) {{ optional($order->shippingZone)->name }} @elseif($order->shippingRate) {{ optional($order->shippingRate->shippingZone)->name }} @endif {{ get_formated_decimal($order->taxrate, true, 2) }}% |
{{ get_formated_currency($order->taxes) }} |
{{ trans('app.grand_total') }} | {{ get_formated_currency($order->grand_total) }} |
@if($order->customer->image)
@else
@endif