diff --git a/src/Console/Commands/InstallCommand.php b/src/Console/Commands/InstallCommand.php index 5fe7a03..d6a6f84 100644 --- a/src/Console/Commands/InstallCommand.php +++ b/src/Console/Commands/InstallCommand.php @@ -52,9 +52,7 @@ protected function installStack() { (new Filesystem)->ensureDirectoryExists(base_path("routes/user")); (new Filesystem)->ensureDirectoryExists(base_path("routes/admin")); - (new Filesystem)->copy(__DIR__."/../../../stubs/routes/user/acl.php", base_path("routes/user/acl.php")); (new Filesystem)->copy(__DIR__."/../../../stubs/routes/admin/acl.php", base_path("routes/admin/acl.php")); - $this->helper->putRoute("api.php", "user/acl.php"); $this->helper->putRoute("api.php", "admin/acl.php"); (new Filesystem)->ensureDirectoryExists(app_path("Http/Controllers/ACL"));