@extends('client.layouts.main') @section('title', 'My Services') @section('content')
| Service | Billing Cycle | Status | Next Due | Actions |
|---|---|---|---|---|
|
{{ $service->product?->name ?? 'N/A' }}
@if($service->domain)
{{ $service->domain }} @endif |
{{ $service->billingCycle?->name ?? 'N/A' }} | @php $statusColors = [ 'active' => 'success', 'pending' => 'warning', 'suspended' => 'danger', 'terminated' => 'default', 'cancelled' => 'default', ]; @endphp {{ ucfirst($service->status) }} | {{ $service->next_due_date?->format('M d, Y') ?? '-' }} | View |
| No services found. | ||||