海南旅游SAAS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
319 B

  1. <?php
  2. namespace App\AdminSupplier\Lazys;
  3. use Dcat\Admin\Form;
  4. use Dcat\Admin\Support\LazyRenderable;
  5. /**
  6. * 供应商产品异步表单
  7. * Class ProductForm
  8. * @package App\AdminSupplier\Lazys
  9. */
  10. class ProductForm extends LazyRenderable
  11. {
  12. public function render()
  13. {
  14. $id = $this->id;
  15. return Form::make();
  16. }
  17. }