Nwidart\Modules\Commands\ModelCommand::getFillable PHP Method

getFillable() private method

private getFillable ( ) : string
return string
    private function getFillable()
    {
        $fillable = $this->option('fillable');
        if (!is_null($fillable)) {
            $arrays = explode(',', $fillable);
            return json_encode($arrays);
        }
        return '[]';
    }