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.