Code Reading is important!

One of the most important things I've focused on recently is reading a lot of code written by others. Even if I don't understand some large parts of the code…

One Day Without Using YouTube

The best way to test if you are addicted to something is to try living one day without it. This way, you can observe your behavior. That's exactly what I…

Create a good pull request

As a software developer throughout my career, I've learned many things from several mistakes, one of which is related to creating effective pull requests. Here are some steps to provide…

Document the Problems You Solve!

When you encounter an error during your workday as a developer, don't simply acknowledge the mistake and promise to avoid it next time. From my personal experience, that approach doesn't…

Pivot table in Laravel

When you work on an app that requires a many-to-many relationship between tables, you often need a pivot table in your database to manage the associations between records. Let's consider…