Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

RoleStaff.php 374B

123456789101112131415161718
  1. <?php
  2. namespace App\Model\Module;
  3. use Jenssegers\Mongodb\Eloquent\Model as Eloquent;
  4. class RoleStaff extends Eloquent
  5. {
  6. protected $connection = 'mongodb';
  7. protected $collection = 'roles_staff';
  8. protected $guarded = ['_id'];
  9. public function staff()
  10. {
  11. return $this->belongsToMany('App\Model\Staff', 'akses_staff', 'akses_id', 'staff_id');
  12. }
  13. }