rtablada / eloquent-ember
dev-master
2014-06-05 18:51 UTC
Requires
- php: >=5.3.0
- illuminate/database: ~4
This package is not auto-updated.
Last update: 2024-11-04 15:06:57 UTC
README
This has been deprecated. For the reasoning behind this checkout http://ryantablada.com/post/why-i-am-deprecating-eloquent-ember.
This package is set to work with Ember Data before 1.0 Beta. This may function with the new ActiveModelAdapter but is no longer tested or in active development.
Installation
Just add rtablada/eloquent-ember
to your composer.json.
Use
In your models just extend Rtablada\EloquentEmber\Model
.
Also, list all of your relationships in the withIds
property on your model.
Now instead of calling toArray()
call toEmberArray()
.
Heres an example controller for referece
public function index() { return $this->orderModel->all()->toEmberArray(); } public function store() { $input = Input::json(); $order = $this->orderModel->create($input->get('order')); $order = $order->toArray(); return Response::json(compact('order')); } public function show($id) { $order = $this->orderModel->findOrFail($id); return $order->toEmberArray(); }