@extends('admin.layouts.app') @section('title', $order->reference) @section('page-title', __('admin.menu.orders').' — '.$order->reference) @section('page-actions') {{ __('admin.actions.back') }} @endsection @section('content')
| {{ __('admin.fields.name') }} | {{ __('admin.fields.sku') }} | {{ __('admin.fields.price') }} | {{ __('admin.fields.quantity') }} | {{ __('admin.fields.total') }} |
|---|---|---|---|---|
| {{ $item->product_name }} | {{ $item->sku }} | {{ number_format((float) $item->unit_price, 2) }} | {{ $item->quantity }} | {{ number_format((float) $item->total, 2) }} |
| {{ __('admin.fields.subtotal') }} | {{ number_format((float) $order->subtotal, 2) }} | |||
| {{ __('admin.fields.shipping_cost') }} | {{ number_format((float) $order->shipping_cost, 2) }} | |||
| {{ __('admin.fields.tax') }} | {{ number_format((float) $order->tax, 2) }} | |||
| {{ __('admin.fields.total') }} | {{ number_format((float) $order->total, 2) }} {{ $order->currency }} | |||