@extends('layouts.app') @section('title', 'My Orders - MiMSMS Voter System') @section('content')

My Orders

@if($orders->count() > 0) @foreach($orders as $order) @endforeach
Order ID Area Package Quantity Status WHMCS ID Date Action
#{{ $order->id }} {{ $order->electoralArea->name ?? 'N/A' }} {{ ucfirst(str_replace('_', ' ', $order->package_type)) }} {{ number_format($order->quantity) }} {{ ucfirst($order->order_status) }} {{ $order->whmcs_order_id ?? '-' }} {{ $order->created_at->format('M d, Y') }} View
{{ $orders->links() }}
@else

You haven't placed any orders yet. Create your first order →

@endif
@endsection