28 lines
524 B
PHP
Executable File
28 lines
524 B
PHP
Executable File
<?php
|
|
|
|
namespace Webkul\User\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Webkul\User\Contracts\Group as GroupContract;
|
|
|
|
class Group extends Model implements GroupContract
|
|
{
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'name',
|
|
'description',
|
|
];
|
|
|
|
/**
|
|
* The users that belong to the group.
|
|
*/
|
|
public function users()
|
|
{
|
|
return $this->belongsToMany(UserProxy::modelClass(), 'user_groups');
|
|
}
|
|
}
|