Nwidart\Modules\Commands\ModelCommand::getFillable PHP 메소드

getFillable() 개인적인 메소드

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