{{ __('Session Management') }}

{{-- Alert Messages --}} @if (session('success'))

{{ session('success') }}

@endif @if (session('error'))

{{ session('error') }}

@endif {{-- Error from API --}} @if ($error)

{{ $error }}

@endif {{-- Header Card --}}

Available Sessions

Total: {{ $total }} session(s)

@csrf
{{-- Sessions Table --}} @if (count($sessions) > 0)
@foreach ($sessions as $session) @endforeach
Device ID Status Phone State Actions
{{ $session['deviceId'] }} {{ $session['status'] ?? 'UNKNOWN' }} {{ $session['phone'] ?? '-' }} {{ $session['state'] ?? 'null' }}
@csrf
@else

No sessions found

There are no available WhatsApp sessions at the moment.

@endif {{-- Session Info Card --}}

Session Status Legend

  • READY: Session active and ready to use
  • INITIALIZING: Session is being initialized
  • NOT_INITIALIZED: Session exists but not yet initialized
  • UNKNOWN: Unknown or transitioning state