| 123456789101112131415161718 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- use App\Traits\ModelTimeFormat;
- class Role extends Model
- {
- use ModelTimeFormat;
- 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');
- }
- }
|