@extends('app') @section('content')
@foreach($payments as $payment) @endforeach
# เลขที่การสั่งซื้อ ชื่อผู้ชำระ จำนวนเงินที่ชำระ ราคาจริง วันเวลาที่ชำระ ดำเนินการ
{{$payment->id}} {{$payment->orders_id}} {{$payment->pay_name }} {{number_format($payment->money) }} {{number_format($payment->total_price)}} {{ date('d-m-Y H:i',strtotime($payment->created_at))}}
             
@endsection @section('script') @endsection