✕ Clear all filters
12 articles

📰 Dev.to · CodeCraft Diary

12 articles · Updated every 3 hours · View all reads

All Articles 67,621Blog Posts 99,886Tech Tutorials 16,357Research Papers 13,813News 12,551 ⚡ AI Lessons
Laravel Testing Mistakes That Make Your Tests Useless
Dev.to · CodeCraft Diary 1mo ago
Laravel Testing Mistakes That Make Your Tests Useless
Testing in Laravel can feel straightforward at first. You write a few tests, run php artisan test,...
Fat Controller to Clean Architecture in Laravel (Step-by-Step Refactor)
Dev.to · CodeCraft Diary 1mo ago
Fat Controller to Clean Architecture in Laravel (Step-by-Step Refactor)
Refactoring a fat controller in Laravel is one of the most impactful improvements you can make in a...
Trunk-Based Development: Why Most Teams Think They Use It (But Don’t)
Dev.to · CodeCraft Diary 1mo ago
Trunk-Based Development: Why Most Teams Think They Use It (But Don’t)
Trunk-Based Development sounds simple. No long-lived branches. Frequent merges. Small, incremental...
Laravel Queue Testing: What Most Developers Get Wrong
Dev.to · CodeCraft Diary 2mo ago
Laravel Queue Testing: What Most Developers Get Wrong
Queues are where “it works on my machine” quietly turns into production incidents. Emails are sent...
Contract Testing External APIs in PHP with Pact (Real Laravel Example)
Dev.to · CodeCraft Diary 3mo ago
Contract Testing External APIs in PHP with Pact (Real Laravel Example)
Testing integrations with external APIs is one of the most fragile parts of any web application. In...
Builder Pattern in PHP/Laravel: Building Clean and Flexible Order Objects
Dev.to · CodeCraft Diary 3mo ago
Builder Pattern in PHP/Laravel: Building Clean and Flexible Order Objects
In practice, orders in e-commerce systems often evolve over time, which makes them a perfect...
Writing Maintainable Feature test(Real Laravel example)
Dev.to · CodeCraft Diary 6mo ago
Writing Maintainable Feature test(Real Laravel example)
One of the things I enjoy the most about Laravel is how it encourages writing clean, testable...
Feature Testing in PHP: Ensuring the Whole System Works Together
Dev.to · CodeCraft Diary 6mo ago
Feature Testing in PHP: Ensuring the Whole System Works Together
Feature tests are where the magic of real-world validation happens. While unit tests ensure each LEGO...