2017 © Pedro Peláez
 

library repository

Repository for Laravel 5

image

killtw/repository

Repository for Laravel 5

  • Friday, September 18, 2015
  • by killtw
  • Repository
  • 1 Watchers
  • 0 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 0 % Grown

The README.md

Repository for Laravel 5

Repository for Lavavel 5 which is used to abstract the data layer., (*1)

Getting Started

First, install the package through composer:, (*2)

$ composer require killtw/repository

or add this to require section in your composer.json file:, (*3)

"killtw/repository": "1.*"

And then, include the service provider whthin config/app.php, (*4)

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

Usage

Create a repository

Create repositories through generator., (*5)

$ php artisan make:repository UserRepository

The Versions