Posts tagged by database

Eloquent Relationships in Laravel Models 1

Laravel provides a great approach for implementing crud operations of tables and relationships between them called  “Eloquent ORM”. Eloquent ORM (Object Relational Mapper) is a code library that automates the transfer of data stored in relational databases tables into objects. Each table has a corresponding "Model" which is used to interact with that table.it makes managing and working with relationships easy, and supports several different types of relationships.

Read More

Laravel Database Seeding

In this article,I’ll explain laravel feature called database seeding.This feature helps us to insert multiple test data in tables without need to do it manually row by row in database.

Read More