How to seeds images with Faker in Laravel
Faker is a library that generates fake data for us. Faker helps us populate the database which helps to speed the development process. It...
Handle No Query Results For Model error in Laravel
In this short article, we will learn how we can handle "No Query Results For Model" error in Laravel. First of all, we need...
Create Custom Helper function in Laravel
Laravel provides many helper functions by default which can be used globally in any project. Some of the most used helper functions are app_path(),...
Efficiently Count Related Models in Laravel
In programming, as the size of the project grows, the complexity of the application also grows automatically. In this article, we will learn how...
How to Implement Soft Delete in Laravel
In programming deleting a record has two concepts i.e. Hard Delete and Soft Delete. Hard Delete means you are completely removing the record from...
Disable CSRF Protection on Specific Routes in Laravel
Laravel comes with a CSRF protection feature. The CSRF stands for Cross-Site Request Forgery. This is one of the major features of Laravel. This...
Understanding Laravel Redirect method with Example
Laravel redirect function is a global helper function that comes in handy in many cases during programming. There are various types of redirect in...
Laravel – Convert Array to Collection with Pagination
In this article, we will learn how we can convert an array to collection with pagination. To achieve this, we will build a simple...
Handle error 404 for API and Webpage
In this short article, we will learn how we can handle 404 error for API as well as webpage. While building API, we need...
How to get Headers from Request in Laravel
While building an API, we may encounter a situation to pass information in the header and access them through request. Well, this process is...