Role.php 368 B

12345678910111213141516
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Role extends Model
  5. {
  6. protected $fillable = ['name'];
  7. function users(){
  8. return $this->belongsToMany('App\User','user_role','id_role','id_user');
  9. }
  10. function authorities(){
  11. return $this->belongsToMany('App\Authority','authority_role','id_role','id_authority');
  12. }
  13. }