. * * @link https://www.librenms.org * @copyright 2020 Tony Murray * @author Tony Murray */ namespace App\Http\Controllers\Device\Tabs; use App\Models\Device; class CaptureController implements \LibreNMS\Interfaces\UI\DeviceTab { public function visible(Device $device): bool { return false; } public function slug(): string { return 'capture'; } public function icon(): string { return 'fa-bug'; } public function name(): string { return __('Capture'); } public function data(Device $device): array { return []; } }