21 lines
322 B
PHP
21 lines
322 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class PermissionRole extends Model
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* The table associated with the model.
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
protected $table = 'permission_role';
|
||
|
|
protected $fillable = [
|
||
|
|
'role_id',
|
||
|
|
'department_id',
|
||
|
|
'permission_ids',
|
||
|
|
];
|
||
|
|
}
|