bd 10.0
This commit is contained in:
@ -121,9 +121,14 @@ class ListJsonTable
|
||||
return false;
|
||||
}
|
||||
|
||||
private function is_fillable($column)
|
||||
private function is_fillable($column): bool
|
||||
{
|
||||
if (in_array($column, $this->data['meta']['fillable'])) {
|
||||
if (isset($this->data['meta']['fillable'])){
|
||||
if (in_array($column, $this->data['meta']['fillable'])) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
else{
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user