@extends('layouts.app') @section('title','Hotspot Profiles — BlueBando v3') @section('content')

Hotspot Profiles

All /ip hotspot user profile on your MikroTik routers.
@if($router) + New Profile @endif
@if(session('status'))
{{ session('status') }}
@endif
@if($router && !empty($profiles)) @foreach($profiles as $p) @endforeach
Name Rate limit Shared users Idle timeout Keepalive Parent queue Comment Actions
{{ $p['name'] }} {{ $p['rate_limit'] ?? '—' }} {{ $p['shared_users'] ?? '—' }} {{ $p['idle_timeout'] ?? '—' }} {{ $p['keepalive_timeout'] ?? '—' }} {{ $p['parent_queue'] ?? '—' }} {{ $p['comment'] ?? '—' }} Edit
@csrf @method('DELETE')
@else
No profiles found or router not reachable.
@endif
@endsection