Active Record Implementation in Laravel?

2024-03-29 06:56:17 Bina Malik Laravel

How to use Active Record in Laravel

Active Record Implementation is an architectural pattern found in software engineering that stores in-memory object data in relational databases. Active Record facilitates the creation and use of business objects whose data is required to persistent in the database. Laravel implements Active Records by Eloquent ORM. Below is sample usage of Active Records Implementation is Laravel.

$product = new Product;
			
$product->title = 'Iphone 6s';
				
$product->save();

Active Record style ORMs map an object to a database row. In the above example, we would be mapping the Product object to a row in the products table of database.

This post is submitted by one of our members. You may submit a new post here.

Related Tricks