ValueForm.php 468 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace App\Admin\Extensions\Form;
  3. use Encore\Admin\Widgets\Form;
  4. class ValueForm extends Form
  5. {
  6. /**
  7. * Get variables for render form.
  8. *
  9. * @return array
  10. */
  11. protected function getVariables()
  12. {
  13. return [
  14. 'fields' => $this->fields,
  15. 'attributes' => $this->formatAttribute(),
  16. 'method' => $this->attributes['method'],
  17. 'buttons' => $this->buttons,
  18. ];
  19. }
  20. }