. * * @link https://www.librenms.org * * @copyright 2018 Tony Murray * @author Tony Murray */ namespace App\Models; use LibreNMS\Util\StringHelpers; class Application extends DeviceRelatedModel { public $timestamps = false; protected $primaryKey = 'app_id'; protected $fillable = ['data']; protected $casts = [ 'data' => 'array', ]; // ---- Helper Functions ---- public function displayName() { return StringHelpers::niceCase($this->app_type); } public function getShowNameAttribute() { return $this->displayName(); } }