@extends('layouts.admin') @section('title', 'Licenses') @section('topbar-title', 'Licenses') @section('content')

All Licenses ({{ $licenses->total() }})

@if(request()->hasAny(['search','status']))Clear@endif
@forelse($licenses as $lic) @empty @endforelse
License KeyUserProductServer IPStatusIP ChangesExpires
{{ $lic->license_key }}
{{ $lic->user->name }}
{{ $lic->user->email }}
{{ $lic->product->name }} {{ $lic->valid_ip }} {{ $lic->status }} {{ $lic->ip_changes }}/3 {{ $lic->expires_at?->format('M j, Y') ?? '—' }} Manage
No licenses found
{{ $licenses->withQueryString()->links() }}
@endsection