42 lines
868 B
PHP
42 lines
868 B
PHP
<?php
|
|
|
|
namespace Vanguard;
|
|
|
|
use Database\Factories\RoleFactory;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Vanguard\Support\Authorization\AuthorizationRoleTrait;
|
|
|
|
class Role extends Model
|
|
{
|
|
use AuthorizationRoleTrait, HasFactory;
|
|
|
|
/**
|
|
* The database table used by the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'roles';
|
|
|
|
protected $casts = [
|
|
'removable' => 'boolean'
|
|
];
|
|
|
|
protected $fillable = ['name', 'display_name', 'description'];
|
|
|
|
public function users()
|
|
{
|
|
return $this->hasMany(User::class, 'role_id');
|
|
}
|
|
|
|
/**
|
|
* Create a new factory instance for the model.
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Factories\Factory
|
|
*/
|
|
protected static function newFactory()
|
|
{
|
|
return new RoleFactory;
|
|
}
|
|
}
|