'mqtt', 'icon' => 'network', 'name' => 'MQTT ยท Mosquitto', 'state' => filled(config('broadcasting.connections.reverb')) ? 'active' : 'inactive', 'detail' => config('mqtt-client.connections.default.host', 'mosquitto'), ], [ 'key' => 'unifi', 'icon' => 'wifi', 'name' => 'UniFi', 'state' => filled(env('UNIFI_HOST')) ? 'active' : 'inactive', 'detail' => env('UNIFI_HOST') ? env('UNIFI_HOST') : __('settings.not_configured'), ], [ 'key' => 'ring', 'icon' => 'shield', 'name' => 'Ring', 'state' => filled(env('RING_ENABLED')) ? 'active' : 'available', 'detail' => __('settings.addon'), ], ]; return view('livewire.settings.index', [ 'integrations' => $integrations, 'version' => app()->version(), 'deviceMqtt' => [ 'host' => \App\Support\HostAddress::broker(), 'username' => config('homeos.mqtt.device_username'), 'password' => config('homeos.mqtt.device_password'), 'port' => config('homeos.mqtt.port'), ], ]); } }