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

Related Packages

erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

610,259,779 9,704
laravel/framework

The Laravel Framework.

551,557,428 34,802
laravel/tinker

Powerful REPL for the Laravel framework.

462,518,693 7,436