Manage Student Payments

{{ sprintf('Payments: %s #%s', $user->name ?? '', $user->id) }}

Manage student payments.

@if (isset($orders) && count($orders) > 0)
@foreach ($orders as $order) @endforeach
# Date Items Amount Payment Method Status Action
{{ $order->id }} {{ $order->created_at->format('M j, Y g:i A') }} {{ sprintf('%d Classes', $order->items()->count()) }} {{ FormattingHelper::price($order->total) }} {{ $order->method->label() }} {!! $order->status->badge() !!} Action
@csrf @method('DELETE') Delete
@if ($orders->hasPages()) @endif @else
No orders found!
@endif