Eloquent is the ORM built into the Laravel framework. It allows you to interact with your database tables in an object-oriented manner, by use of the ActiveRecord pattern.
A single model class usually maps to a single database table, and also relationships of different types (one-to-one, one-to-man...