Laravel Upsert

Laravel Upsert

It’s a troublesome task to update mass data in production. One of the most used methods to do this task is: updateorCreate() method has two …

Read More

What’s New in Laravel 8?

What's New in Laravel 8?

Laravel 8 is now officially released and has some brand new features such as Laravel Jetstream, new application scaffolding, class-based migration factories, migration squashing, rate-limiting …

Read More

Laravel Notification

Laravel Notification

As Laravel is a heavy framework, it provides support for sending notifications across various channels. Here in this session, we will take a look at …

Read More

Exception Handling Methods

Exception Handling Methods

While doing a project, it is common to come across various errors and exceptions. Luckily for us, error and exception handling is already configured in …

Read More

Data Seeding Tips And Tricks

Data Seeding Tips And Tricks

Laravel has this amazing feature of seeding databases with test data using seed classes. These classes are stored in database/seeds. Here in this document, we …

Read More

HTTP Client – Laravel 10

HTTP Client in Laravel

Laravel 10 provides an expressive API around the Guzzle HTTP Client. It allows us to quickly make outgoing HTTP requests to communicate with other web …

Read More