@php $configData = Helper::appClasses(); @endphp @extends('layouts/layoutMaster') @section('title', 'Dashboard') @section('vendor-style') @vite(['resources/assets/vendor/libs/apex-charts/apex-charts.scss']) @endsection @section('vendor-script') @vite(['resources/assets/vendor/libs/apex-charts/apexcharts.js']) @endsection @section('page-script') @vite(['resources/assets/js/dashboards-analytics.js']) @endsection @section('content')
@if ($expiringDomains->isEmpty())
No tienes dominios por vencer pronto

Los dominios con estado "Alerta" o "Vencido" van a aparecer acá.

@else
@foreach ($expiringDomains as $domain) @endforeach
Dominio Categoría Estado Vence Costo renovación Acciones
{{ $domain->name }} {{ $domain->category?->name ?? '—' }} @include('content.domains._status_badge', ['domain' => $domain]) {{ $domain->timeUntilExpirationCompact() }} {{ $domain->expirationDateHuman() }} @php $renewalCost = $domain->renewal_cost ?? $domain->estimated_renewal_cost; @endphp {{ $renewalCost ? \App\Models\Currency::format($renewalCost, $domain->currency) : '—' }} @if (!$domain->renewal_cost && $domain->estimated_renewal_cost) est. @endif
@endif

{{ \App\Models\Currency::format($totalInvested, 'USD') }}

Invertido en total (USD)

@if ($hasNonUsdDomains)

No incluye dominios en otras monedas.

@endif
@if ($totalDomains === 0)
Todavía no tienes dominios registrados

Empieza agregando el primero a tu cartera.

Agregar dominio
@else
Por estado
Por categoría
Últimos movimientos
    @forelse ($recentLogs as $log)
  • {{ $log->domain->name }} {{ $log->created_at->diffForHumans() }}

    {{ $log->description }}

  • @empty

    Todavía no hay movimientos.

    @endforelse
@endif
@endsection