LazyRenderable.php 238 B

12345678910111213141516
  1. <?php
  2. namespace UCore\DcatAdmin\Support;
  3. use Dcat\Admin\Support\LazyRenderable as BaseLazyRenderable;
  4. /**
  5. * 懒加载 渲染
  6. *
  7. */
  8. abstract class LazyRenderable extends BaseLazyRenderable
  9. {
  10. protected string $trans_path = '';
  11. }