We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfe3359 commit 767a5ecCopy full SHA for 767a5ec
src/Common/GeneratorConfig.php
@@ -400,7 +400,7 @@ public function preparePrefixes()
400
$this->prefixes['public'] = explode('/', config('infyom.laravel_generator.prefixes.public', ''));
401
402
if ($this->getOption('prefix')) {
403
- $multiplePrefixes = explode(',', $this->getOption('prefix'));
+ $multiplePrefixes = explode('/', $this->getOption('prefix'));
404
405
$this->prefixes['route'] = array_merge($this->prefixes['route'], $multiplePrefixes);
406
$this->prefixes['path'] = array_merge($this->prefixes['path'], $multiplePrefixes);
0 commit comments