@extends('client.layouts.main') @section('title', 'My Services') @section('content')
Recurring Services
@forelse($services as $service) @empty @endforelse
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.
@if($services->hasPages()) @endif
@endsection