Skip to content

Instantly share code, notes, and snippets.

@sorokadima
Created August 5, 2020 09:27
Show Gist options
  • Save sorokadima/3d035dcd36b751bfdb1e1a7e1ba2e7a8 to your computer and use it in GitHub Desktop.
Save sorokadima/3d035dcd36b751bfdb1e1a7e1ba2e7a8 to your computer and use it in GitHub Desktop.
Yii2 model custom attribute getter. (custom property)
<?php
// view
<?= $form->field($model, 'foo')->checkbox() ?>
// or
<?php print_r( $model->foo ) ?>
<?php
// model
public function getFoo() {
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment