Full UniFi dashboard snap-in including: - WiFi/client/device stats with time-series snapshots - Client Dashboard with traffic, satisfaction, signal, download charts - Webhook alerting with debounced offline/online detection - AP snapshot collection, client snapshot collection - Device classification (type and OS) from OUI/hostname heuristics - Webhook cooldown, templates, and multi-platform delivery Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
298 B
PHP
12 lines
298 B
PHP
<?php
|
|
|
|
namespace Dashboard\Unifi\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class VlanMapping extends Model
|
|
{
|
|
protected $table = 'unifi_vlan_mappings';
|
|
protected $fillable = ['group_name', 'match_type', 'match_value', 'vlan_id', 'max_devices', 'session_minutes', 'sort_order'];
|
|
}
|