Html.php 323 B

1234567891011121314151617181920
  1. <?php
  2. namespace Dcat\Admin\Show;
  3. use Dcat\Admin\Support\Helper;
  4. class Html extends Field
  5. {
  6. public $html;
  7. public function __construct($html)
  8. {
  9. $this->html = $html;
  10. }
  11. public function render()
  12. {
  13. return Helper::render($this->html, [$this->value()], $this->parent->model());
  14. }
  15. }