@extends('layouts.app')
@section('title', 'Order Details')
@section('content')
Order Details
Order Information
| ID |
{{ $order->order_id }} |
| Order ID |
{{ $order->orderid }} |
| Customer |
{{ $order->customer }} |
| DC ID |
{{ $order->dcid }} |
| SP ID |
{{ $order->spid }} |
| TC ID |
{{ $order->tcid }} |
| Status |
{{ $order->order_status }} |
| Order Fee |
{{ $order->order_fee }} |
Product Information
@if ($order->product)
| SKU |
{{ $order->product->sku }} |
| Product Name |
{{ $order->product->product_name }} |
| Quantity |
{{ $order->quantity }} |
@else
| No product associated with this order. |
@endif
Back
@endsection