| 12345678910111213141516 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- class Role extends Model
- {
- protected $fillable = ['name'];
- function users(){
- return $this->belongsToMany('App\User','user_role','id_role','id_user');
- }
- function authorities(){
- return $this->belongsToMany('App\Authority','authority_role','id_role','id_authority');
- }
- }
|