Hi, I am Thouhedul Islam. I am a Laravel Developer with a passion for web development. I specialize in PHP, particularly Laravel, as well as Javascript, MySql, and other cutting-edge web technologies.

During the day, I work for GLEIF, where I apply my skills and experience to develop innovative web applications. At night, I enjoy contributing to the community and solving problems. You can often find me on Laracasts, where I love to stay active and keep up-to-date with the latest trends in web development.

I am excited about the potential of technology and its power to transform people's lives.

Email me Laracasts Facebook

97 articles
9 months ago

Hi 👋🏻 I have to depend on some eco-system, software, package, and helpers to work on day to day basis. Here is my list of items that I mostly use every single day. # Editor I am heavily re...

Hi, If you are wondering how to activate [Laravel Horizon](https://laravel.com/docs/master/horizon) in [Cloudways](https://www.cloudways.com/), I think these tiny tips will help you. Recently I hav...

Hi 👋 The mocking with HTTP response in Laravel might not be easy. Today, I will show you how to mock HTTP response with [Http Fake](https://laravel.com/docs/9.x/mocking). ## Why? Imagine you...

Imagine that, you have two fields to validate. - first - second **Validation Rules**: - The `first` field is **required**. - The `second` field is required **IF** the `first` field has value...

If you use Laravel, I am sure that you already used `get()` method from the collection. Today, I will try to deep dive into get() method in Laravel collection. ### Uses ```php $data = [ "f...

Hey Buddy. I found **9 Rules** for writing comments on code. **Rule 1: Comments should not duplicate the code.** **Rule 2: Good comments do not excuse unclear code.** **Rule 3: If you ca...

Hey, I practice these **Key binding** in my day-to-day basis work with VIM and VS Code. ## Switching Tabs | Command | Keyboard Shortcuts | |:------------|:----------------------| | S...

Here is the step-by-step process how to install Brew on Mac. type below: ``` brew update brew install redis ``` To have launchd start redis now and restart at login: ``` brew services s...

If you are looking for a way how to do automatically deploy on the server from **BitBucket** and **GitHub**, I found an interesting article for that. It's pretty useful and handy. >Git auto-deploym...

For some reason, if you change the model directory in laravel 8, you may face issues with creating the factory. It will show you the following error- ```php Class 'Database\Factories\Your\Director...