@extends("client.layouts.app") @section("title", __("client.dashboard.title")) @section("content") {{-- Welcome Banner --}}
{{ __('client.dashboard.overview') }}
{{ __('client.dashboard.no_invoices') }}
| {{ __('client.dashboard.invoice_col') }} | {{ __('client.dashboard.due_col') }} | {{ __('common.table.total') }} | {{ __('common.table.status') }} |
|---|---|---|---|
| #{{ $invoice->invoice_num ?? $invoice->id }} | {{ $invoice->due_date?->format("d M Y") ?? "-" }} | ${{ number_format($invoice->total, 2) }} | {{ __('client.status.' . strtolower($invoice->status)) }} |
{{ __('client.dashboard.no_tickets') }}
| {{ __('common.table.subject') }} | {{ __('common.table.status') }} | {{ __('common.table.last_reply') }} |
|---|---|---|
| {{ Str::limit($ticket->title, 38) }} | status)) }}">{{ __('client.status.' . strtolower(str_replace(' ', '-', $ticket->status))) }} | {{ $ticket->last_reply?->diffForHumans() ?? $ticket->created_at?->diffForHumans() }} |
| {{ __('common.table.product') }} | {{ __('common.table.domain') }} | {{ __('common.table.amount') }} | {{ __('client.dashboard.next_due') }} | {{ __('common.table.status') }} |
|---|---|---|---|---|
| {{ $service->product?->name ?? __('client.dashboard.service_fallback', ['id' => $service->id]) }} | {{ $service->domain ?? "-" }} | ${{ number_format($service->amount, 2) }}/{{ $service->billing_cycle }} | {{ $service->next_due_date?->format("d M Y") ?? "N/A" }} | {{ __('client.status.active') }} |