@extends('layouts.member') @section('body') @if($orders->count()>0)

รายการสั่งซื้อของคุณ

@foreach($orders as $order) @endforeach
ลำดับ เลขที่ใบสั่งซื้อ วันที่ ปี/เดือน AgPrice ProfitPrice
{{$i}} {{$order->order_id}} {{$order->date}} {{$order->pyear.' / '.$order->pmth}} {{number_format($order->agprice)}} {{number_format($order->pfprice)}}
{{$orders->links()}}
@else

ไม่มีข้อมูลรายการสั่งซ์้อ

@endif @endsection