Showing posts with label Laravel 4. Show all posts
Showing posts with label Laravel 4. Show all posts

Thursday, March 1, 2018

Laravel Error Illuminate\Support\Manager::createDriver()

I just got error in my laravel project, and the error was Illuminate\Support\Manager::createDriver() . I was able to solve this problem, so ...

Monday, July 10, 2017

Laravel could not be opened: failed to open stream: Permission denied

When you first setup a laravel project, you might encounter this error ' could not be opened: failed to open stream: Permission denied ...

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...