Posts in Web Development

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

Design Thinking

In this article,I will explain a thinking strategy that has been proven its efficiency for solving problems and produce big results for long terms. This way of thinking can be applied to software development, products, services, and processes; anything that needs to be solved or improved. This strategy of solving problems called Design Thinking.

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