. * * @link https://www.librenms.org * * @copyright 2018 Neil Lathwood * @author Neil Lathwood */ use App\Models\DevicePerf; $perf_info = DevicePerf::where('device_id', $device['device_id'])->latest('timestamp')->first(); if (! empty($perf_info['debug']['traceroute'])) { echo "

Traceroute ({$perf_info['timestamp']})

{$perf_info['debug']['traceroute']}
"; }