@extends('client.layouts.main') @section('title', 'My Hosting') @section('content')
Hosting Accounts
@forelse($accounts as $account) @empty @endforelse
Domain Package Server Status Next Due Actions
{{ $account->domain }} {{ $account->product->name ?? '-' }} {{ $account->server->name ?? '-' }} @php $statusColors = [ 'active' => 'success', 'pending' => 'warning', 'suspended' => 'danger', 'terminated' => 'default', 'cancelled' => 'default', ]; @endphp {{ ucfirst($account->status) }} {{ $account->next_due_date ? $account->next_due_date->format('M d, Y') : '-' }} View
No hosting accounts found.
@if($accounts->hasPages()) @endif
@endsection