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
3 years ago

I was planning to write a few articles about **PHP Unit** for the beginner. Today, finally I got a chance to do that. In this series of article, I am going to show you how to use PHP Unit in PHP for t...

If you are using git in your computer and facing the issue called **Please make sure you have the correct access rights and the repository exists.** then, this post might be helpful for you. To...

Hello Recently I was facing issue to upgrade PHP version 7.3 from 7.1. Well, there are many tutorials online, unfortunately, many of them have confusing instruction. However, I come out with the...

I think one of the most popular design principles is **Open Closed Principle** that most of the PHP developers use in their project. I am going to show you how to use the Open Closed Principle in Lara...

Hello Today, I am going to show you short tips on how to use `dump()` on Laravel collections instead of `dd()`. Sometimes, writing `dd()` is time-consuming since it a function. In that case, if you...

Hello Docker is becoming one of the essential parts for developers nowadays. Many companies are personally using docker for maintaining the same development environment in production and local....

Tumblr is one of the famous microblogging and social networking website. If you are a fan of Tumblr and planning to use its [official API](https://github.com/tumblr/tumblr.php). In this post, I mainly...

Sometimes it is required to add new columns in Laravel tables. Today I will show you how to add new column or columns to the existing table in Laravel migration. Imagine that, you have a table c...

Hello If you are having issue of Laravel migrate failed to open stream: No such file or directory, then this post might be helpful for you. Currently, I have the same issue. Let me tell you how d...

You might need to get all the commit lists of a github repo. In that case, you can get the list of the commit of a repo in different command. May be you can try- ``` git log --reflog ``` O...