belongsTo(Account::class); } public function consume() { $this->used = true; $this->save(); } public function consumed(): bool { return $this->used == true; } }