Skip to content
#

object-relational-mapping

Object–relational mapping (ORM) is a technique with which records from relational databases are mapped to objects using an object-relational mapper in the programming language in which they are used.

Here are 7 public repositories matching this topic...

📊 The Database class is a versatile PHP tool using mysqli for database management. It handles essential CRUD operations (Create, Read, Update, Delete) and includes methods for user authentication and password hashing, making database interactions and user management simple and secure.

  • Updated Apr 26, 2025
  • PHP

Eloquent is the default ORM (Object-Relational Mapping) included with the framework. It provides a simple ActiveRecord implementation for working with your database. With Eloquent, you can define database models as classes, and interact with the database using these models, rather than writing raw SQL queries.

  • Updated May 5, 2025
  • PHP