¡@

Home 

php Programming Glossary: eloquent

Bulk Insertion in Laravel using eloquent ORM

http://stackoverflow.com/questions/12702812/bulk-insertion-in-laravel-using-eloquent-orm

can we perform bulk database insertions in Laravel using Eloquent ORM EDIT I want to accomplish this in Laravel http stackoverflow.com.. eloquent share improve this question You can just use Eloquent insert . For example data array array 'name' 'Coder 1' 'rep'..

To swap or not to swap, from CodeIgniter to Laravel? [closed]

http://stackoverflow.com/questions/13693795/to-swap-or-not-to-swap-from-codeigniter-to-laravel

is easily converted to Laravel and by writing proper Eloquent Model classes for your database models you can get rid of practically..

Get the query executed in Laravel 3/4

http://stackoverflow.com/questions/14536165/get-the-query-executed-in-laravel-3-4

query in Laravel 3 4 using Fluent Query Builder or Eloquent ORM . For example DB table 'users' where_status 1 get Or posts.. 3 In Laravel 3 you can get the last executed query from an Eloquent model calling the static method last_query on the DB class...

Add a custom attribute to a Laravel / Eloquent model on load?

http://stackoverflow.com/questions/17232714/add-a-custom-attribute-to-a-laravel-eloquent-model-on-load

a custom attribute to a Laravel Eloquent model on load I'd like to be able to add a custom attribute.. be able to add a custom attribute property to an Laravel Eloquent model when it is loaded similar to how that might be achived.. and either explicity set the attribute class Book extends Eloquent protected table 'books' public function toArray array parent..

Laravel 4 - Connect to other database

http://stackoverflow.com/questions/17410049/laravel-4-connect-to-other-database

more documentation on this see Accessing Connections . Eloquent ORM You can define the variable for connection in an eloquent..

Bulk Insertion in Laravel using eloquent ORM

http://stackoverflow.com/questions/12702812/bulk-insertion-in-laravel-using-eloquent-orm

Insertion in Laravel using eloquent ORM How can we perform bulk database insertions in Laravel.. named and positional parameters. php database laravel eloquent share improve this question You can just use Eloquent insert..

Where can I get a complete list of Laravel events (fired by the core libaries)?

http://stackoverflow.com/questions/13059744/where-can-i-get-a-complete-list-of-laravel-events-fired-by-the-core-libaries

laravel.view.loader laravel.view.engine view.filter eloquent.saving eloquent.updated eloquent.created eloquent.saved eloquent.deleting.. laravel.view.engine view.filter eloquent.saving eloquent.updated eloquent.created eloquent.saved eloquent.deleting eloquent.deleted.. view.filter eloquent.saving eloquent.updated eloquent.created eloquent.saved eloquent.deleting eloquent.deleted 500..

Get the query executed in Laravel 3/4

http://stackoverflow.com/questions/14536165/get-the-query-executed-in-laravel-3-4

I can save in log all querys executed. php orm laravel eloquent share improve this question Laravel 4 In Laravel 4 you have..

Add a custom attribute to a Laravel / Eloquent model on load?

http://stackoverflow.com/questions/17232714/add-a-custom-attribute-to-a-laravel-eloquent-model-on-load

available in a template isn't an option php orm laravel eloquent share improve this question The problem is caused by the..

Laravel 4 - Connect to other database

http://stackoverflow.com/questions/17410049/laravel-4-connect-to-other-database

ORM You can define the variable for connection in an eloquent class to set which connection is used. That's noted in the Basic..