@include('front-end.client.dashboard.header') Document

บันทึกการสั่งซื้อ

ยอดเงินในบัญชี: {{ $credit_balance }}

ค่าตอบแทน: {{ $commission }}

@foreach($row as $k => $val) @php $is_deposit = isset($val->is_deposit) ? $val->is_deposit : 0; @endphp @if(isset($val->product))

{{ isset($val->created_at) ? $val->created_at : '-' }}

{{--

{{ isset($val->product->product_title) ? $val->product->product_title : '' }}

--}}

{{ isset($val->product->description) ? $val->product->description : '-' }}

ยอดสั่งซื้อ

@if($is_deposit > 0 )

{{ isset($val->product->price) ? number_format($val->percentage_price,2) : '0.00' }} THB

@else

{{ isset($val->product->price) ? number_format($val->product->price,2) : '0.00' }} THB

@endif

กำไร

{{ isset($val->product->commission->price) ? number_format($val->product->commission->price,2) : '0.00' }} THB

@endif @endforeach
@foreach($deposit as $ks => $vd)
{{ isset($vd->created_at) ? $vd->created_at : '-' }}
รายการเติมเงินทำเรียบร้อยแล้วค่ะ
เติมเงิน {{ isset($vd->transfer_amount) ? number_format($vd->transfer_amount,2) : '0.00' }} THB
@endforeach
@foreach($withdraw as $kw => $vw)
{{ isset($vw->created_at) ? $vw->created_at : '-' }}
รายการถอนเงินทำเรียบร้อยแล้ว
ถอนเงิน {{ isset($vw->amount_withdraw) ? number_format($vw->amount_withdraw,2) : '0.00' }} THB
@endforeach
@include('front-end.client.dashboard.pages.confirm-recieve') @include('front-end.client.dashboard.pages.detail') @include('front-end.client.dashboard.nav-bottom')