Dashboard sipadu mbip
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Roles.php 337B

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