AdminActionLog.php 332 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Module\System\Repositories;
  3. use UCore\DcatAdmin\Repository\EloquentRepository;
  4. class AdminActionLog extends EloquentRepository
  5. {
  6. protected $relations = [
  7. 'admin'
  8. ];
  9. /**
  10. *
  11. * @var string
  12. */
  13. protected $eloquentClass = \App\Module\System\Models\AdminActionlog::class;
  14. }