Set of tools and behaviour for eloquent models.
For the complete usage of the package extends WhiteFrame\Helloquent\Model.
use WhiteFrame\Helloquent\Model;
class User extends Model {
protected $presenter = 'App\Presenters\UserPresenter';
protected $transformer = 'App\Transformers\UserTransformer';
protected $repository = 'App\Repositories\UserRepository';
protected $controller = 'App\Http\Controllers\UserController';
// Your stuff here ...
}Present your eloquent datas for your views using a flexible presenter.
Transform your models to powerfull arrays in your API.
Eloquent compatible repository pattern implementation for your application.
Bind controller access to your Model.
Some helpers built for the package.