@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')
Clear
@forelse($licenses as $license) @empty @endforelse
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' }}
View Edit
@csrf @method('DELETE')

No licenses found

Try adjusting your filters or create a new license

@if($licenses->count() > 0)
{{ $licenses->links() }}
@endif
@endsection