@extends("client.layouts.app") @section("title", __("client.services.title")) @section("content")

{{ __('client.services.page_title') }}

{{ __('client.services.page_subtitle') }}

{{ __('client.services.order_new') }}
@forelse($services as $s) @empty @endforelse
{{ __('common.table.product') }} {{ __('common.table.domain') }} {{ __('common.table.billing_cycle') }} {{ __('common.table.amount') }} {{ __('common.table.next_due') }} {{ __('common.table.status') }}
{{ $s->product?->name ?? "N/A" }} {{ $s->domain ?? "-" }} {{ $s->billing_cycle ?? "-" }} ${{ number_format($s->amount, 2) }} {{ $s->next_due_date?->format("d M Y") ?? "-" }} {{ __('client.status.' . strtolower($s->status)) }} {{ __('common.actions.view') }}
🛒

{{ __('client.services.no_services') }}

{{ __('client.services.order_first') }}
@if($services instanceof \Illuminate\Pagination\LengthAwarePaginator && $services->hasPages())
{{ $services->links() }}
@endif @endsection