Nwidart\Modules\Commands\ModelCommand::getFillable PHP Méthode

getFillable() private méthode

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