*/ protected $fillable = [ 'name', 'description', ]; /** * Gets the creator of this badge. */ public function creator() { return $this->belongsTo(User::class, 'creator'); } }