LazyRenderable.php 266 B

1234567891011121314151617181920
  1. <?php
  2. namespace Dcat\Admin\Contracts;
  3. interface LazyRenderable
  4. {
  5. /**
  6. * 获取请求地址
  7. *
  8. * @return string
  9. */
  10. public function getUrl();
  11. /**
  12. * 渲染组件.
  13. *
  14. * @return mixed
  15. */
  16. public function render();
  17. }