|
<?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',
|
|
];
|
|
}
|