Payments
@if (isset($orders) && $orders->isNotEmpty())
@foreach ($orders as $order) @endforeach
Order Date Items Amount 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->status->badge() !!} View
@if ($orders->hasPages()) @endif @else No orders found! @endif