@extends('layouts.app') @section('title', 'My Services') @section('content') {{-- ── Page Header ── --}}

My Services

View and manage your active services

{{-- ── Filter Card ── --}}
{{-- ── Table Card ── --}}
@forelse($orders as $i => $order) @empty @endforelse
Service ID Type Product Status Speed AVC ID Next Billing Address Created Actions
#{{ $order->iperium_service_id ?? $order->id }} {{ $order->service_type === 'community_fibre' ? 'Community Fibre' : 'NBN' }} {{ $order->product_display_name }} {{ ucfirst($order->status_label) }} {{ $order->product?->service_speed ?? $order->communityFibreProduct?->service_speed ?? '—' }} {{ $order->avc_id ?? '—' }} {{ $order->next_billing_date ? $order->next_billing_date->format('d/m/Y') : '—' }} {{ \Illuminate\Support\Str::limit($order->service_address_display, 35) ?: '—' }} {{ $order->created_at->format('M j, Y') }} View

No services yet.

{{-- ── Pagination ── --}} @if($orders->hasPages())
{{ $orders->links('pagination::bootstrap-4') }}
@else {{-- Debug: Show pagination info for troubleshooting --}} @if(request()->has('page') || request()->has('status'))
Showing {{ $orders->count() }} of {{ $orders->total() }} results
@endif @endif @endsection @push('styles') @endpush