makeVisible() public method

Make the given, typically hidden, attributes visible.
public makeVisible ( array | string $attributes )
$attributes array | string
 /**
  * ModelSnapshot constructor.
  *
  * @param Model $model
  * @param string $event
  */
 protected function __construct(Model $model, $event)
 {
     $this->model = $model->makeVisible($model->getHidden());
     $this->event = $event;
 }