Yahoo Search Búsqueda en la Web

Resultado de búsqueda

  1. Laravel includes Eloquent, an object-relational mapper (ORM) that makes it enjoyable to interact with your database. When using Eloquent, each database table has a corresponding "Model" that is used to interact with that table.

  2. Accessors, mutators, and attribute casting allow you to transform Eloquent attribute values when you retrieve or set them on model instances. For example, you may want to use the Laravel encrypter to encrypt a value while it is stored in the database, and then automatically decrypt the attribute when you access it on an Eloquent model.

  3. 5 de oct. de 2021 · Dejando eso de lado, la consulta es simple. Tienes que agrupar las condiciones. SELECT * FROM mensajes WHERE ( para_usuario_id = @id1 AND de_usuario_id = @id2 ) OR ( para_usuario_id = @id2 AND de_usuario_id = @id1 )

  4. Eloquent es un ORM (Mapeo Objeto-Relacional) para PHP que se utiliza principalmente con el framework Laravel. ORM es una técnica de programación que permite a los desarrolladores interactuar con las bases de datos utilizando objetos en lugar de SQL.

  5. 11 de abr. de 2024 · The robust features and tools provided by Eloquent inside Laravel make it easier for developers to build custom web applications following specified business requirements. This article has given you a primer on how to use the basic features of Eloquent ORM. Keep in mind that some features often impact the performance of any Laravel ...

  6. 6 de jul. de 2023 · Eloquent is Laravel’s Object Relational Mapper (ORM) with an elegant, beautiful and efficient way of interacting and managing databases. The Laravel team created Eloquent to ease the interaction and communication with databases and provides an easy-to-use way to address all database and development-related problems.

  7. Un ORM - Object Relational Mapping o Mapeador de Objetos Relacionales - es un modelo de programación que nos permite mapear las estructuras de una base de datos relacional y vincularla a entidades lógicas.