InterviewSolution
Saved Bookmarks
| 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.
|
|