Built-in port forwarding in VS Code

— There are a lot of tools like ngrok that let you expose your local server to the internet. But did you know VS Code has just got this feature in the form of port forwarding so that you don’t need to install any third-party tool to do this anymore?

Artisan command to generate views in Laravel

— Laravel has all kinds of Artisan commands to let you generate boilerplate code for your application. For instance, you can generate a controller, model, migration, and so on using the Artisan command. But, there was no command to generate views in Laravel until now.

Camel Humps in VS Code

— There are some things that you never know you need until someone tells you about them. For instance, Christoph Rumpel recently shared a handy little setting in PhpStorm called Camel Humps which allows you to navigate through the camel-cased class/variable names using the arrow keys.

Managing Git Hooks using Whisky in PHP

— Git hooks are scripts that run automatically every time a particular event occurs in a Git repository. They let you customize Git’s internal behavior and trigger customizable actions at key points in the development life cycle.