src/Abstractor/Eloquent/Relation/MiniCrudPolymorphic.php 1 location
|
@@ 13-27 (lines=15) @@
|
| 10 |
|
'Illuminate\Database\Eloquent\Relations\MorphMany' |
| 11 |
|
); |
| 12 |
|
|
| 13 |
|
protected function skipField($columnName, $key) |
| 14 |
|
{ |
| 15 |
|
if ($columnName === $this->eloquentRelation->getPlainForeignKey()) { |
| 16 |
|
return true; |
| 17 |
|
} |
| 18 |
|
|
| 19 |
|
if ($columnName === $this->eloquentRelation->getPlainMorphType()) { |
| 20 |
|
return true; |
| 21 |
|
} |
| 22 |
|
|
| 23 |
|
if ($key === 'emptyResult' && ($columnName === $this->eloquentRelation->getParent()->getKeyName())) { |
| 24 |
|
return true; |
| 25 |
|
} |
| 26 |
|
return false; |
| 27 |
|
} |
| 28 |
|
|
| 29 |
|
protected function setKeys(Model $relationModel) |
| 30 |
|
{ |
src/Abstractor/Eloquent/Relation/MiniCrud.php 1 location
|
@@ 251-262 (lines=12) @@
|
| 248 |
|
$relationModel->setAttribute($this->eloquentRelation->getForeignKey(), $this->relatedModel->id); |
| 249 |
|
} |
| 250 |
|
|
| 251 |
|
protected function skipField($columnName, $key) |
| 252 |
|
{ |
| 253 |
|
if ($columnName === $this->eloquentRelation->getPlainForeignKey()) { |
| 254 |
|
return true; |
| 255 |
|
} |
| 256 |
|
|
| 257 |
|
if ($key === 'emptyResult' && ($columnName === $this->eloquentRelation->getParent()->getKeyName())) { |
| 258 |
|
return true; |
| 259 |
|
} |
| 260 |
|
|
| 261 |
|
return false; |
| 262 |
|
} |
| 263 |
|
|
| 264 |
|
/** |
| 265 |
|
* @return string |