where('user_id', Auth::user()->id)->first(); if (!is_null($model)) { return $model; } } throw new NotFoundHttpException; } /** * @param $status */ public function change($status) { $this->status = $status; $this->save(); } /** * @codeCoverageIgnore * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function user() { return $this->belongsTo('FireflyIII\User'); } }