Hello. I’m Thouhedul Islam. Some people also know me as Suchi.
I am a Full-stack Developer. I love to play with PHP especially Laravel, JavaScript, MySql, and the latest web technology. Currently, I am working for GLEIF as my day time job.
At night I love to solve problems for the community. I love to be active at Laracasts.
You will get an example in Laravel documentation that how to use **transform()** in Laravel. You might see example code like that-
``` php
$collection = collect([1, 2, 3, 4, 5]);
$collection->t...
Although, there is a lot of controversy for testing in development, however, I would prefer to do follow testing. The advantage of testing laravel application is better than without testing. So, I wil...
If you use cPanel to host your [Laravel](https://www.laravel.com) application, you might be confusing at first. It's because of the directory structure of Laravel and cPanel are bit different. Today,...
Ideally, the ```php artisan route:list``` will display display the domain, method, URI, name, action and middleware for the routes it includes in the generated table.
Now, what if I want to show a...
Sometimes, we have some code that we can do refactor more. In this post I will show you how to do refactor a traditional code and make it more optimized.
Let's imagine that, as an author, you have...
If you want to delete a file from public folder in Laravel, surely you can use PHP's `unlink()` method to remove that.
Besides `unlink()`, you can remove file by laravel way, by using the `File::d...
I am sure, you are using **Git** in every single day as a developer.
I have listed down git command that I use in my daily life. If you are git lover, the following commands should be your parts...
Hello Everyone.
This is Laravel School website where we will write the technical blog especially PHP and Laravel related post.
Normally we write code every day and issues encounter during progra...