@laravelphp is there a way to change directory structure? I'd like to have functional based separation instead of a technical separation.
This way you don't have to switch between directories like cd ../../../resources/views/<ControllerName>
to get to your views.
Http
- Controllers
-
ControllerName
Controller
-
-
ControllerName
Controller.php
-
-
-
- Views
-
-
-
-
ViewName1
.blade.php
-
-
-
-
-
ViewName2
.blade.php
-
-
-
-
- ViewModels
-
-
-
-
ViewName1
ViewModel.php
-
-
-
-
-
ViewName2
ViewModel.php
-
-