A repository package to add easy to use repositories to any Laravel project utilising Eloquent as the primary DAL. Tested in Laravel 5.3.
composer require daveawb/repos
namespace App\Repositories;
class Repository extends \Daveawb\Repos\Repository
{
/**
* Return the models class name
*
* @return string
*/
public function model()
{
return App\User::class;
}
}