By default, Laravel stores files in a folder-by-type structure: app/
┣ Http/
┃ ┗ Controllers/
┃ ┣ CustomerController.php
┃ ┣ OrderController.php
┃ ┣ ProductController.php
┗ Models/
┣ Customer.php
┣ Order.php
┣ Product.php This folder structure works ok for small projects, but as soon as you write more and more controllers…