@extends('layouts.app') @section('title', 'Orders') @section('content')

Orders

Add Order @foreach ($orders as $order) @endforeach
Primary ID Order ID Customer DC ID SP ID TC ID Status Fee SKU Quantity Actions
{{ $order->order_id }} {{ $order->orderid }} {{ $order->customer }} {{ $order->dcid }} {{ $order->spid }} {{ $order->tcid }} {{ $order->order_status }} {{ $order->order_fee }} {{ $order->sku }} {{ $order->quantity }} Edit View
@csrf @method('DELETE')
@endsection