# | ID | Total Harga | Status Pembayaran | Action | @foreach ($orders as $order)
---|---|---|---|---|
{{ ++$i }} | #{{ $order->number }} | @moneyIDR($order->total_price) | @if ($order->payment_status == 1) {{ __('billing.status.waiting-payment') }} @elseif ($order->payment_status == 2) {{ __('billing.status.paid-off') }} @elseif ($order->payment_status == 3) {{ __('billing.status.expired') }} @else {{ __('billing.status.cancelled') }} @endif | {{ __('billing.button.view') }} |