@extends('layouts.app', ['title' => 'Dashboard']) @section('content')

Customer dashboard

Manage licenses, access downloads, track billing, and keep customer operations moving from one place.

Licenses
{{ $stats['licenses'] }}
Downloads
{{ $stats['downloads'] }}
Orders
{{ $stats['orders'] }}
Notifications
{{ $stats['notifications'] }}
Open tickets
{{ $stats['tickets'] }}

Your licenses

Track product licenses, manage domain activations, and monitor verification activity.

@foreach ($licenses as $license)
{{ $license->product?->name }}
{{ $license->license_key }}
Status: {{ ucfirst($license->status) }}
Active installs: {{ $license->activations->whereNull('deactivated_at')->count() }}/{{ $license->activation_limit }}
@endforeach

Recent activity

@forelse ($activityLogs as $entry)
{{ $entry->event }}
{{ $entry->description }}
{{ $entry->created_at?->diffForHumans() }}
@empty

No activity has been recorded yet.

@endforelse
@endsection