Lazy.php 222 B

1234567891011121314
  1. <?php
  2. namespace UCore\DcatAdmin\Widgets;
  3. use UCore\DcatAdmin\Traits\Translation;
  4. use Dcat\Admin\Widgets\Widget;
  5. abstract class Lazy extends Widget
  6. {
  7. protected string $trans_path = 'admin1';
  8. use Translation;
  9. }