Orders

Payments

Manage your payments.

@if (isset($orders) && count($orders) > 0)
@foreach ($orders as $order) @endforeach
# Student Date Items Amount Payment Method Status Action
{{ $order->id }} {{ $order->user ? sprintf('%s (#%s)', $order->user->name, $order->user->id) : 'Deleted Student' }} {{ $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