Dashboard sipadu mbip
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }