How does the use of Eloquent as an ORM in Laravel affect the terminology used for Models in documentation and code?

When using Eloquent as an ORM in Laravel, the terminology used for Models in documentation and code follows the conventions set by Eloquent. This means that models are typically referred to in singular form with the first letter capitalized, matching the class name of the model. For example, a model for a "User" table would be named "User" and referenced as such in code.

// Example of a User model in Laravel using Eloquent
namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class User extends Model
{
    // Model code here
}