@extends('layouts.user') @section('title', trans('app.Welcome To')) @section('page-title', trans('app.Welcome To')) @section('page-subtitle', trans('app.Manage your licenses and products')) @section('seo_title', $siteSeoTitle ?? trans('app.Welcome To')) @section('meta_description', $siteSeoDescription ?? trans('app.Manage your licenses, track downloads, and access support from your personal dashboard')) @section('content')
{{ trans('app.Welcome To') }}, {{ $siteName }}!

{{ trans('app.Manage your licenses, track downloads, and access support from your personal dashboard') }}

{{ trans('app.Total Customers') }}
{{ number_format($stats['customers'] ?? 0) }}

{{ trans('app.All registered users') }}

{{ trans('app.Total Licenses') }}
{{ number_format($stats['licenses'] ?? 0) }}

{{ trans('app.All issued licenses') }}

{{ trans('app.Total Tickets') }}
{{ number_format($stats['tickets'] ?? 0) }}

{{ trans('app.Support requests') }}

{{ trans('app.Total Invoices') }}
{{ number_format($stats['invoices'] ?? 0) }}

{{ trans('app.All invoices') }}

{{ trans('app.Total Products') }}
{{ number_format($stats['products'] ?? \App\Models\Product::count()) }}

{{ trans('app.Available products') }}

{{ trans('app.Active Licenses') }}
{{ number_format($stats['active_licenses'] ?? 0) }}

{{ trans('app.Currently active') }}

{{ trans('app.Paid Invoices') }}
{{ number_format($stats['paid_invoices'] ?? 0) }}

{{ trans('app.Completed payments') }}

{{ trans('app.Open Tickets') }}
{{ number_format($stats['open_tickets'] ?? 0) }}

{{ trans('app.Awaiting response') }}

{{ trans('app.Available Products') }}

{{ trans('app.Discover and purchase new products') }}

@if($products->isEmpty())

{{ trans('app.No products available') }}

{{ trans('app.Check back later for new products') }}

@else
@foreach($products as $product)

{{ $product->name }}

@if($product->is_featured || $product->is_popular) {{ trans('app.Premium') }} @endif

v{{ $product->version ?? '-' }}

{{ $product->formatted_price }}
{{ $product->renewalPeriodLabel() }}
@if($product->description)

{{ Str::limit($product->description, 100) }}

@endif {{ trans('app.View Details') }}
@endforeach
@endif
@endsection