rtablada/eloquent-ember

128 32
Install
composer require rtablada/eloquent-ember
PHP:>=5.3.0
License:MIT
Last Updated:Jun 5, 2014
Links: GitHub  ·  Packagist
Maintainer: rtablada

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();
}