permission-view-layer.php 399 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Author: lf
  4. * Blog: https://blog.feehi.com
  5. * Email: job@feehi.com
  6. * Created at: 2018-02-24 23:02
  7. */
  8. use yii\widgets\DetailView;
  9. /** @var $model backend\models\form\RBACPermissionForm */
  10. ?>
  11. <?=DetailView::widget([
  12. 'model' => $model,
  13. 'attributes' => [
  14. 'group',
  15. 'category',
  16. 'route',
  17. 'method',
  18. 'description',
  19. 'sort',
  20. ],
  21. ])?>