wrap() and unwrap()

Brief introduction about wrap() wrap() method creates new instance of collection from any value supplied to it. It is very much similar to make() method. …

Read More

Get ID of inserted Model

While developing a web app, you might need to get the id of last inserted data to assign to another model. There are various ways …

Read More

Laravel Upsert

Its a really troublesome task to update mass data in production. One of the most used method to do this task is: updateorCreate() method basically …

Read More

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

Guide to Laravel Authentication

Authentication in laravel is really easy and simple to handle. It is important for application to have authentication for security reasons. If you want to …

Read More

Laravel Notification

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

Read More

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