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

School Management System – Laravel 7

SMS

School Management System is a web application made with Laravel. This system aids in maintaining information regarding teachers, students and other components. School and universities …

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