| 1 | <?php |
||
| 8 | class Permission extends Model |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * The table associated with the model. |
||
| 12 | * |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | protected $table; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * The attributes that are mass assignable. |
||
| 19 | * |
||
| 20 | * @var array |
||
| 21 | */ |
||
| 22 | protected $fillable = ['name']; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Create a new Permission model instance. |
||
| 26 | * |
||
| 27 | * @param array $attributes |
||
| 28 | */ |
||
| 29 | public function __construct(array $attributes = []) |
||
| 34 | } |