Skip to content

Blog#

Tracepoint, logpoint, what’s the point?

You are probably well acquainted with breakpoints. You place them in your IDE (F9) and whenever the program reaches this location in the source code during the execution, the program stops and you can explore the state of the application. Very useful, right?

8 Tips a new PHP developer should know

Cover Image

PHP is highly popular- it has become almost impossible for all web developers not to have at least a working knowledge of PHP. This article is aimed to help those who are beginning with PHP, but are willing to make extra efforts to excel in the field.

How to setup Migrations in Laravel

Cover Image

Migrations work as a version control for databases. If you want to keep a record of your database creation and alterations over time, you can use migrations and simplify application re-deployment or distribution. Migrations will help you interact with your database by only using the CLI interface of Laravel. This means that after you install your application and configure the database connection, you just have to run “php artisan migrate” and it will instantly set up the database again.