16 lines
231 B
PHP
16 lines
231 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
class Permission extends BaseSpatiePermission
|
|
{
|
|
protected $fillable = [
|
|
'module',
|
|
'name',
|
|
'label',
|
|
'description',
|
|
'is_active',
|
|
'guard_name'
|
|
];
|
|
} |