agungsugiarto / boilerplate

CodeIgniter4 Boilerplate based on AdminLTE 3 with user management, roles, permissions, ...
MIT License
158 stars 49 forks source link

how to move all the views file to default app\views folder #81

Closed cijagani closed 3 years ago

cijagani commented 3 years ago

Is there any feature to move all views files (including theme files, layout etc..) to App\views folder agungsugiarto\boilerplate\Views to App\views

or how to modify dashboard view file without touching agungsugiarto\boilerplate\src folder

agungsugiarto commented 3 years ago

Unfortunately this is not be move to app folder, if you want interact with view components, you must call with full path namespace.

Example: https://github.com/agungsugiarto/boilerplate/blob/090fe5885bf408a287ec9bb6783d566a24a46b19/src/Views/dashboard.php#L2

Reference: https://codeigniter4.github.io/userguide/outgoing/views.html#namespaced-views

cijagani commented 3 years ago

Ok. Thanks