Showing posts with label Database. Show all posts
Showing posts with label Database. 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 ...

Insert using DB table doesnt update timestamp

In laravel there are two ways to insert data/record, using DB table or using model, but i found a problem when inserting the data using DB t...

How to update timestamp in Laravel

In laravel usually you have created_at and updated_at field in your database table, these are timestamps() that you define in your larave...

Tuesday, May 2, 2017

How to add primary key to Laravel model?

If you did not specify primary key in your model, laravel will assume the primary key of the table is 'id', so for example your prim...

How to insert, update and delete in Laravel

If you are just learning about laravel, meaning you are beginner of laravel, you probably want to know about how to do insert, update and de...