1.

What do you mean by Eloquent used in Laravel 5?

Answer»

An ORM STANDS for the object-relational mapper. It is essential features PROVIDED by Laravel Framework. It allows us to work with DATABASE objects and relationships using an eloquent. Each table has a particular Model which are used to interact with that particular table in laravel application.

There are various 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


Discussion

No Comment Found