@extends('layouts.app') @section('title','Plans — BlueBando v3') @section('content') {{-- Header + router filter + actions --}}
| Name / Profile | Router | Price | Validity | Rate Limit | DL / UL Limit (MB) | Status | Updated | Actions |
|---|---|---|---|---|---|---|---|---|
|
{{ $plan->name }}
Profile: {{ $plan->profile ?: $plan->name }}
|
@if($plan->router)
{{ $plan->router->name }}
{{ $plan->router->host }}
@else
Any router
@endif
|
{{ number_format($plan->price) }} {{ $plan->currency ?: config('bluebando.currency','TZS') }} | {{ $plan->validity_hours }}h | {{ $plan->rate_limit ?: '—' }} | @php $dl = $plan->download_limit_mb; $ul = $plan->upload_limit_mb; @endphp @if($dl || $ul) {{ $dl ?: 0 }}/{{ $ul ?: 0 }} @else Unlimited @endif | @if($plan->is_active) Active @else Disabled @endif | {{ optional($plan->updated_at)->diffForHumans() ?? '—' }} |
/ip hotspot user profile.
| Name | Rate limit | Shared users | Idle timeout | Keepalive | Parent queue | Comment |
|---|---|---|---|---|---|---|
| {{ $p['name'] }} | {{ $p['rate_limit'] ?? '—' }} | {{ $p['shared_users'] ?? '—' }} | {{ $p['idle_timeout'] ?? '—' }} | {{ $p['keepalive_timeout'] ?? '—' }} | {{ $p['parent_queue'] ?? '—' }} | {{ $p['comment'] ?? '—' }} |