killtw/repository

This package is abandoned and no longer maintained. No replacement package was suggested.

Repository for Laravel 5

1.0.3 2015-09-18 07:10 UTC

This package is not auto-updated.

Last update: 2020-01-24 16:58:22 UTC


README

Repository for Lavavel 5 which is used to abstract the data layer.

Getting Started

First, install the package through composer:

$ composer require killtw/repository

or add this to require section in your composer.json file:

"killtw/repository": "1.*"

And then, include the service provider whthin config/app.php

'providers' => [
    Ontoo\Repository\Providers\RepositoryServiceProvider::class,
];

Usage

Create a repository

Create repositories through generator.

$ php artisan make:repository UserRepository