{{ $authorLabel }}
{!! nl2br(e($pnote->body)) !!}
@extends('layouts.app') @section('title', 'Service #' . $order->id) @section('content') {{-- ── Page Header ── --}}
{{-- ── Service Details ── --}}| Service Type | {{ $order->service_type === 'community_fibre' ? 'Community Fibre' : 'NBN' }} |
|---|---|
| Status | {{ ucfirst($order->status_label) }} |
| Customer Type | {{ $order->customer_type }} |
| Current Provider | {{ $order->current_provider ?? '—' }} |
| Full Name | {{ $order->site_contact_name }} |
| Contact Number | {{ $order->site_contact_number }} |
| {{ $order->site_contact_email }} | |
| Date of Birth | {{ $order->date_of_birth ? \Carbon\Carbon::parse($order->date_of_birth)->format('d/m/Y') : '—' }} |
| ABN | {{ $order->abn ?? '—' }} |
| Registered Company Name | {{ $order->registered_company_name ?? '—' }} |
| AVC ID | {{ $order->avc_id ?? '—' }} |
| Existing NTD | {{ $order->has_ntd === true ? 'Yes' : ($order->has_ntd === false ? 'No' : '—') }} |
| Address | {{ $order->service_address_display ?: '—' }} |
| LOC | {{ $order->loc ?? '—' }} |
| Service Activation | {{ $order->asap ? 'ASAP' : ($order->service_activation_date ? \Carbon\Carbon::parse($order->service_activation_date)->format('d/m/Y') : '—') }} |
| NTD ID | {{ $order->ntd_id ?? '—' }} |
| Port | {{ $order->port ?? '—' }} |
| Copper Pair ID | {{ $order->copper_pair_id ?? '—' }} |
| Product | {{ $order->product_display_name }} |
| Product Price | {{ $order->product_price !== null ? '$' . number_format($order->product_price, 2) : '—' }}{{ $order->isSubscription() ? ' / month' : '' }} |
| Router Add-on | @if($order->router_status) Included @else Not Included @endif |
| Payment Type | {{ $order->isSubscription() ? 'Monthly subscription' : 'One-time' }} |
| Next Billing Date | {{ $order->next_billing_date->format('d/m/Y') }} |
Manage your billing cycle, update payment method, or view past invoices.
Manage subscription & invoicesRouter shipping fee and payment details for your service.
{{-- Router Add-on Payment History --}}| Date | Amount | Status | Link |
|---|---|---|---|
| {{ $routerPayment->created_at->format('d/m/Y') }} | @if($routerPayment->amount < 1000) {{-- If amount is less than 1000, it's likely stored in dollars, convert to cents --}} ${{ number_format($routerPayment->amount, 2) }} {{ strtoupper($routerPayment->currency) }} @else {{-- Normal cents to dollars conversion --}} {{ $routerPayment->formatted_amount }} {{ strtoupper($routerPayment->currency) }} @endif | {{ ucfirst($routerPayment->status) }} | @if($routerPayment->invoice_hosted_url) View Invoice @endif @if($routerPayment->invoice_pdf_url || $routerPayment->stripe_invoice_id) Download PDF @endif |
| Product | {{ $order->product_display_name }} |
|---|---|
| Amount | {{ number_format($order->stripe_amount / 100, 2) }} {{ strtoupper($order->stripe_currency ?? 'aud') }} |
| Currency | {{ strtoupper($order->stripe_currency) }} |
| Payment Status | {{ ucfirst(str_replace('_', ' ', $order->stripe_status)) }} |
| NBN Service Profile | {{ $order->nbn_service_profile ?? '—' }} |
|---|---|
| IPv4 Allocation | {{ $order->ipv4_allocation ?? '—' }} |