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

Manage Orders

@if($orders->count() > 0) @foreach($orders as $order) @endforeach
Order ID Customer Email Area Package Quantity Status WHMCS ID Date Action
#{{ $order->id }} {{ $order->customer_name }} {{ $order->customer_email }} {{ $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') }} Edit
{{ $orders->links() }}
@else

No orders found

@endif
@endsection