@extends('app.my-account.admin.users.single') @section('details')

Orders as Client

@include('app.my-account.admin.orders.forms.create-order')
@foreach ($orders as $order) is_cancelled) class="cancelled-order" @endif> @endforeach @if(!count($orders)) @endif
IID Created At Total Amount Tests Trx
{{ $order->orderNumber() }} {{ friendly_date($order->created_at) }} amountDeductedFromAccountBalance(); ?> {{ displayAmount('$', $order->order_total) }} @if($amountFromClientBalance)
Deduction from client balance: {{ displayAmount('$', $amountFromClientBalance) }}
@endif
@include('app.my-account.admin.orders.partials.order-tests-summary')
@include('app.my-account.admin.orders.forms.create-charge')
@include('app.my-account.admin.orders.partials.financial-transactions') @include('app.my-account.admin.orders.partials.ledger-transactions')
No orders placed!
{{ $orders->appends(request()->input())->links() }}
@endsection