@extends('examples.modern-layout-v2') @section('title', __('messages.menu.extension_licenses') . ' - Location Management') @section('extension-licenses', 'bg-blue-50 text-blue-700') @section('content')
check_circle
error

Extension Licenses - Location Management

Manage extension licenses per location within each city

info Each city has its own enable/disable toggle
location_on
{{ $totalLicenses }}
Total Location Licenses
check_circle
{{ $activeLicenses }}
Active Licenses
warning
{{ $fullLicenses }}
Full Licenses
event_available
{{ $totalAvailableSlots }}
Available Slots
@foreach($citiesData as $city)
location_city

{{ $city['name'] }}

Code: {{ $city['code'] }} | {{ $city['locations']->count() }} location(s)

License
{{ $city['total_max'] }}
Total Limit
{{ $city['total_current'] }}
Active
{{ $city['total_max'] - $city['total_current'] }}
Available
@foreach($city['locations'] as $location)
place

{{ $location['name'] }}

UUID: {{ substr($location['uuid'], 0, 8) }}...

@if($location['status'] === 'disabled') Disabled @endif @if($location['is_full']) warning FULL @endif
Session Usage {{ $location['current_sessions'] }}/{{ $location['max_sessions'] }}
@endforeach @if($city['locations']->isEmpty())
location_off

No location licenses configured

Click "Add Location" to get started

@endif
@endforeach

Add Location License

City:

Adjust Location License

Location:

Current max sessions:

Change: sessions

warning

End All Sessions?

This action cannot be undone

Location:

All active sessions for this location will be terminated immediately.

Active Sessions

sync

Loading sessions...

computer

Windows VM License Server

City:

The URL of the Windows VM License Server

Token generated during Windows VM License Server setup

@push('scripts') @endpush @endsection