Laravel involves Eloquent ORM (Object Relational Mapper), which makes it fun to interact with the database. While using Eloquent, every database table contains their corresponding “Model” that is being used for interaction with that table. The eloquent model also allows the people to insert, update, and delete the records from the table. We can create Eloquent models using the make:model command.

It has many types of relationships.
  • One To One relationships
  • One To Many relationships
  • Many To Many relationships
  • Has Many Through relationships
  • Polymorphic relationships
  • Many To Many Polymorphic relationships
BY Best Interview Question ON 20 Jan 2021