@extends('layouts.app') @section('title', 'Licenses Management') @section('page-title', 'Licenses') @section('page-subtitle', 'Manage all your license keys') @section('header-actions') New License Export CSV @endsection @section('content')
| License Key | Customer | Product | Plan | Status | Domain | Expires | Actions |
|---|---|---|---|---|---|---|---|
|
{{ str_repeat('•', strlen($license->license_key)) }}
|
{{ $license->customer_name }} {{ $license->customer_email }} |
{{ $license->product_name }} | {{ ucfirst($license->plan_type) }} | @if($license->expired_at && $license->expired_at < now()) Expired @elseif($license->status === 'active') Active @elseif($license->status === 'suspended') Suspended @else Inactive @endif |
{{ $license->domain ?? '-' }}
@if($license->ip_lock_enabled)
IP
@endif
|
{{ $license->expired_at ? $license->expired_at->format('M d, Y') : 'N/A' }} | |
|
No licenses found Try adjusting your filters or create a new license |
|||||||