Tag: Coding
All the articles with the tag "Coding".
Utilizing Pre-Commit Hooks in Laravel Projects
Published: at 02:00 PM (6 min read)Pre-commit hooks are a fantastic way to automate repetitive checks and enforce code quality before changes are committed to version history. They are not language specific and highly adaptable. I, for example, use a pre-commit hook which utilizes Laravel Pint and PHPStan to ensure clean code and that I follow the best practices. In this blog post, I want to show you how pre-commit hooks work and how I implement them in my Laravel projects.
My Top Five Laravel Packages
Published: at 02:00 PM (4 min read)As a junior developer, I've spent a lot of time exploring the Laravel ecosystem, and one thing I’ve learned is that there’s no shortage of tools to make our work easier and more efficient. While I’m still learning, I’d like to share five Laravel packages that I’ve found incredibly helpful. Whether you’re just starting out or looking for inspiration, I hope these recommendations resonate with you!
Early Return - The Most Simple Pattern for Better Maintainability
Published: at 02:00 PM (5 min read)In my first year as a professional back-end developer, I learned a lot—from mastering the basics to diving into more advanced topics. I’ll admit, I’ve probably forgotten at least half of what I learned. But there’s one pattern that has stuck with me and consistently proves its value: The early return pattern. This simple yet powerful technique has been a game-changer for writing code that’s both maintainable and easy to understand.