@extends('app') @section('content')

รายการรอจัดส่ง

@foreach($orders as $order) @endforeach
เลขที่การสั่งซื้อ ผู้สั่งซื้อ ราคารวม จำนวนสินค้า วันที่สั่งซื้อ ดำเนินการ
{{$order->id}} {{$order->name }} {{number_format($order->total_price)}} {{number_format($order->quantity)}} {{ date('d-m-Y H:i',strtotime($order->created_at))}}
 
@endsection @section('script') @endsection