@extends('layouts.hosting') @section('title', 'Overview — Ladill Hosting') @section('content')

Overview

@include('partials.mobile-header-btn', [ 'href' => route('hosting.single-domain'), 'label' => 'New hosting', 'variant' => 'primary', ])
@foreach([ ['Active accounts', $activeCount, route('hosting.accounts.index')], ['Expiring (30 days)', $expiringCount, route('hosting.accounts.index')], ['Pending orders', $pendingOrderCount, route('hosting.single-domain')], ['Linked domains', $linkedDomains, route('hosting.accounts.index')], ] as [$label, $value, $link])

{{ $label }}

{{ $value }}

@endforeach

Hosting accounts

@if ($accounts->count() + ($recentLegacyOrders ?? collect())->count() > 5) View all @endif
@if ($recent->isEmpty() && ($recentLegacyOrders ?? collect())->isEmpty())

No hosting accounts yet

Choose a plan to get started — single domain, multi domain, or WordPress hosting.

@else @endif
@if ($pendingOrders->isNotEmpty())

Pending orders

@endif
@endsection