Licenses




← Back to Dashboard
@if($licenses->count() == 0)

No licenses found.

@else @foreach($licenses as $license) @endforeach
ID License Key Product Plan Status Expires At Created
{{ $license->id }} {{ $license->license_key }} {{ $license->product_name }} {{ $license->plan }} @if($license->status == 'active') ACTIVE @else INACTIVE @endif @php $expired = \Carbon\Carbon::parse($license->expires_at)->isPast(); @endphp @if($expired) {{ $license->expires_at }} (Expired) @else {{ $license->expires_at }} @endif {{ $license->created_at }}
@endif