Laravel 4 decides which of the app/config/{env}/ directories to merge by matching the machine’s hostname against a list you write in bootstrap/start.php. It works until someone joins with…
The migrations table records a batch number rather than a position, and migrate:rollback unwinds the highest batch — which is every migration that ran in the last migrate…
A relation read inside a loop issues a query per iteration. Fifty orders rendered with the customer name attached is fifty-one queries, and nothing on the page says…