Blog

Insights, tutorials, and thoughts on web development and technology.

Correct way to Install and use Homebrew on M1 Macs

Correct way to Install and use Homebrew on M1 Macs

If you are one of the early developers who adopted M1 Mac and willing to use HomeBrew on the latest silicone chip. Here is a brief tutorial for you to Install and use HomeBrew on M1 Macs Make a du...

Dec 01, 2020 · Tushar
Check if Environment Variable exists in Laravel

Check if Environment Variable exists in Laravel

If you have some part of your code which you want to execute only if a certain environment variable exists in the .env file. Here is how you can check the existence of environment variable in your .en...

Nov 19, 2020 · Tushar
Laravel Dusk Failed Screenshots Send Email

Laravel Dusk Failed Screenshots Send Email

When you are working with Laravel Dusk and running the tests on a CI like Travis or Heroku. It gets tricky to get out of the screenshots of failed tests. Here is how I configured my Laravel Dusk to...

Nov 13, 2020 · Tushar
Right way to Git Clone a Specific branch

Right way to Git Clone a Specific branch

If you are working on a projects that uses Git version control and you are looking to clone a specific branch to your local system here is the solution. Clone only the specific branch and not dow...

Nov 09, 2020 · Tushar
Remove Composer Package and its Dependencies from Laravel

Remove Composer Package and its Dependencies from Laravel

This is a quick article on how you can remove a composer dependency from the Laravel project. Open the terminal / command-prompt and navigate to the project root directory and execute the following...

Sep 17, 2020 · Tushar