hi
I have a problem, I need to have this structure views for my project
- modules -> views
as I set php service to ensure this?
thanks
├── index.phtml
├── layouts
│ ├── default.phtml
│ └── other.phtml
├── modules
│ ├── index
│ ├── └── index.phtml
│ ├── test
│ ├── └── index.phtml
└── partials
└── head.phtml
this code config
<?php
'application' => array( 'controllersDir' => DIR . '/../../app/modules/', 'modelsDir' => DIR . '/../../app/models/', 'migrationsDir' => DIR . '/../../app/migrations/', 'viewsDir' => DIR . '/../../app/views/', 'pluginsDir' => DIR . '/../../app/plugins/', 'libraryDir' => DIR . '/../../app/library/', 'cacheDir' => DIR . '/../../app/cache/', 'baseUri' => '/', )