match_encrypted) == 1) { return Crypt::decrypt($value); } // @codeCoverageIgnoreStart return $value; // @codeCoverageIgnoreEnd } /** * @param $value * * @return string */ public function getNameAttribute($value) { if (intval($this->name_encrypted) == 1) { return Crypt::decrypt($value); } // @codeCoverageIgnoreStart return $value; // @codeCoverageIgnoreEnd } /** * @param $value */ public function setMatchAttribute($value) { $this->attributes['match'] = Crypt::encrypt($value); $this->attributes['match_encrypted'] = true; } /** * @param $value */ public function setNameAttribute($value) { $this->attributes['name'] = Crypt::encrypt($value); $this->attributes['name_encrypted'] = true; } /** * @return \Illuminate\Database\Eloquent\Relations\HasMany */ public function transactionjournals() { return $this->hasMany('FireflyIII\Models\TransactionJournal'); } /** * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function user() { return $this->belongsTo('FireflyIII\User'); } }