05/06
2014
Wallogit.com
2017 © Pedro Peláez
This has been deprecated. For the reasoning behind this checkout http://ryantablada.com/post/why-i-am-deprecating-eloquent-ember., (*1)
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., (*2)
Just add rtablada/eloquent-ember to your composer.json., (*3)
In your models just extend Rtablada\EloquentEmber\Model.
Also, list all of your relationships in the withIds property on your model., (*4)
Now instead of calling toArray() call toEmberArray()., (*5)
Heres an example controller for referece, (*6)
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();
}