The Eloquent ORM included with Laravel provides a beautiful, simple ActiveRecord implementation for working with your database.
Might not be a question specific to Eloquent collections, but it just hit me while working with them. Let's just …
php laravel eloquentI have problem with eloquent query. I am using eager loading (one to one Relationship) to get 'student' With the …
laravel laravel-4 eloquent eager-loadingIn Laravel 5.1, for MySQL insert, I want to see if the record already exists and update on duplicate or create …
laravel laravel-5 eloquent query-builderI have a project which is primarily based in CET region. I set CET in config/app.php, but all …
laravel eloquent php-carbonI have read laravel 4 docs about eloquent and was quite intrigued by the push() part. It says, Sometimes you may …
laravel laravel-4 eloquentI am getting this error: MassAssignmentException in Model.php line 448: _token When I am using create method. Please review code …
php laravel laravel-5 eloquent mass-assignmentI have a database with the following tables and relationships: Advert 1-1 Car m-1 Model m-1 Brand If I want …
php laravel eloquent object-relationships