Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hotfix: model Generator can not generate fillable. #537

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/Prettus/Repository/Generators/ModelGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,15 @@ public function getReplacements()
*/
public function getFillable()
{
$this->fillable = $this->options['fillable'];

if (!$this->fillable) {
return '[]';
}
$results = '[' . PHP_EOL;

foreach ($this->getSchemaParser()->toArray() as $column => $value) {
$results .= "\t\t'{$column}'," . PHP_EOL;
foreach ($this->getSchemaParser() as $value) {
$results .= "\t\t'{$value}'," . PHP_EOL;
}

return $results . "\t" . ']';
Expand All @@ -97,6 +99,6 @@ public function getFillable()
*/
public function getSchemaParser()
{
return new SchemaParser($this->fillable);
return explode(',', str_replace(' ', '', $this->fillable));
}
}