@extends('layouts.app')
@section('title', 'Other TC Order Details')
@section('content')
Other TC Order Details
| ID |
{{ $order->other_tc_order_id }} |
| Other TC Order ID |
{{ $order->othertcorderid }} |
| Other TC ID |
{{ $order->other_tc_id }} |
| DC ID |
{{ $order->dcid }} |
| SP ID |
{{ $order->spid }} |
| Bid Fee |
{{ $order->bidfee }} |
| Order Bid Response |
{{ $order->order_bid_response ? 'Yes' : 'No' }} |
| Status |
{{ $order->other_tc_order_status }} |
Product Information
@if ($product)
| SKU |
{{ $product->sku }} |
| Product Name |
{{ $product->product_name }} |
| Quantity |
{{ $otherTCOrder->quantity }} |
@else
| No product associated with this order. |
@endif
Back
@endsection