Showing posts with label ORM. Show all posts
Showing posts with label ORM. Show all posts

Friday, May 5, 2017

Laravel eloquent relationships

In laravel you can define all kind of relationships between database tables on the model itself (as in laravel, model is representation of d...

Wednesday, May 3, 2017

Laravel eager loading example

One of the benefit of using laravel is that you can do eager loading relationship in the model when using eloquent, in this article i'm ...

Sunday, April 30, 2017

How to do insert using DB table in Laravel

In laravel you can insert data to a table in two ways, the first one and the most common is using a model, create a model for that table and...

Sunday, April 23, 2017

Laravel query builder example

Instead of hand coding SQL code on your application, you should try to use query builder in laravel, in this article i will show some of the...

Mass assignment technique in Laravel

When you learn about laravel, you probably heard about mass assignment, what does it mean? what exactly is mass assignment? should you care ...

Tuesday, March 21, 2017

How to do query with Laravel Eloquent

In laravel you can do query to the database using the eloquent ORM (Object Relational Mapping), using eloquent you can create a nice looking...

Friday, April 4, 2014

CRUD Operation in Symfony with MYSQL

CRUD OPERATION IN SYMFONY WITH MYSQL ON WINDOWS 7 1. The Database The symfony framework supports all PDO-supported databases (MySQL, Postgre...