Skip to content

Instantly share code, notes, and snippets.

@thephucit
Created August 3, 2020 12:11
Show Gist options
  • Save thephucit/db4911869ba9cc26fd0da49eb81d5b6e to your computer and use it in GitHub Desktop.
Save thephucit/db4911869ba9cc26fd0da49eb81d5b6e to your computer and use it in GitHub Desktop.
octobercms extend refresh fields
<?php
public function formExtendRefreshFields($formWidget, $fields)
{
$model = $fields['model']->value;
$values = $model::all()->toArray();
$values = array_column($values, 'code');
$fields['code']->value = join(', ', $values);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment