From 6c2f0187bcf773cb083a794c06894ebba40760fe Mon Sep 17 00:00:00 2001 From: Gravitano Date: Mon, 11 Jan 2016 14:30:37 +0700 Subject: [PATCH] fix module name --- Commands/SeedCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Commands/SeedCommand.php b/Commands/SeedCommand.php index c1f003a..82ab158 100644 --- a/Commands/SeedCommand.php +++ b/Commands/SeedCommand.php @@ -38,7 +38,7 @@ public function fire() $name = $this->argument('module'); if ($name) { - if (!$this->module->has($name)) { + if (!$this->module->has(Str::studly($name))) { return $this->error("Module [$name] does not exists."); }