@@ -11,23 +11,23 @@ |
||
| 11 | 11 | |
| 12 | 12 | $generatedFiles = []; |
| 13 | 13 | foreach ($viewsToBeGenerated as $view) { |
| 14 | - $viewTemplate = $this->buildTemplate('Views/' . $view, [ |
|
| 14 | + $viewTemplate = $this->buildTemplate('Views/'.$view, [ |
|
| 15 | 15 | '{{modelNameSingularLowercase}}' => $this->module->getModelNameSingularLowercase(), |
| 16 | 16 | '{{modelNamePlural}}' => $this->module->getModelNamePlural(), |
| 17 | 17 | '{{moduleName}}' => $this->module->getModuleName() |
| 18 | 18 | ]); |
| 19 | 19 | |
| 20 | - $fullFilePath = $this->getPath("resources/views/" . $this->module->getModuleName()) . "/{$view}.blade.php"; |
|
| 20 | + $fullFilePath = $this->getPath("resources/views/".$this->module->getModuleName())."/{$view}.blade.php"; |
|
| 21 | 21 | file_put_contents($fullFilePath, $viewTemplate); |
| 22 | - $generatedFiles[] = $fullFilePath; |
|
| 22 | + $generatedFiles[] = $fullFilePath; |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | - $layoutPath = $this->getPath("resources/views/laragen/layouts/") . "app.blade.php"; |
|
| 26 | - if(!file_exists($layoutPath)){ |
|
| 25 | + $layoutPath = $this->getPath("resources/views/laragen/layouts/")."app.blade.php"; |
|
| 26 | + if (!file_exists($layoutPath)) { |
|
| 27 | 27 | |
| 28 | 28 | $viewTemplate = $this->buildTemplate('Views/layouts/app', []); |
| 29 | 29 | file_put_contents($layoutPath, $viewTemplate); |
| 30 | - $generatedFiles[] = $layoutPath; |
|
| 30 | + $generatedFiles[] = $layoutPath; |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | return $generatedFiles; |