@extends('layouts.app') @section('title', $pageTitle ?? 'Broadband Services') @section('content') {{-- ── Page Header ── --}}

{{ $pageTitle ?? 'All Services' }}

Manage broadband orders & services

{{ $orders->total() }} total
{{-- ── Search ── --}}
@if(request()->filled('filter')) @endif @if(request()->filled('status')) @endif
@if(request()->filled('search')) Clear @endif
{{-- ── Table Card ── --}}
@forelse($orders as $i => $order) @empty @endforelse
Service ID Customer Product Status Speed Next Billing Address Created
#{{ $order->iperium_service_id ?? $order->id }} {{ $order->user->name ?? $order->customer_name }} {{ $order->site_contact_email }} AVC ID:{{ $order->avc_id }} {{ $order->product_display_name }} {{ ucfirst(str_replace('_', ' ', $order->status_label)) }} {{ $order->product?->service_speed ?? $order->communityFibreProduct?->service_speed ?? '—' }} {{ $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 found.

{{-- ── Pagination ── --}} @if($orders->hasPages() || $orders->total() > 0)
@if($orders->hasPages()) {{ $orders->links('vendor.pagination.default') }} @endif

Showing {{ $orders->firstItem() ?? 0 }}–{{ $orders->lastItem() ?? 0 }} of {{ $orders->total() }} results

@endif @endsection @push('styles') @endpush