@extends('layouts.user') @section('title', 'Dashboard') @section('topbar-title', 'Dashboard') @section('content')
{{ $stats['active_licenses'] }}
Active Licenses
{{ $stats['total_licenses'] }}
Total Licenses
{{ $stats['total_orders'] }}
Total Orders
{{ $stats['pending_orders'] }}
Pending Orders

Recent Licenses

View All
@if($recentLicenses->isEmpty())
No licenses yet. Buy one now!
@else @foreach($recentLicenses as $lic) @endforeach
ProductIPStatus
{{ $lic->product->name }} {{ $lic->valid_ip }} {{ $lic->status }} View
@endif

Recent Orders

View All
@if($recentOrders->isEmpty())
No orders yet.
@else @foreach($recentOrders as $order) @endforeach
InvoiceProductAmountStatus
{{ $order->invoice_number }} {{ $order->plan->product->name }} ${{ number_format($order->amount, 2) }} {{ ucfirst($order->status) }}
@endif
@if(auth()->user()->company)
{{ auth()->user()->company }}
{{ auth()->user()->email }} @if(auth()->user()->phone) ยท {{ auth()->user()->phone }} @endif
Edit Profile
@endif @endsection