Skip to content

Instantly share code, notes, and snippets.

@Omranic
Last active October 26, 2016 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Omranic/1c3134cd294759df97e149d00625ab6c to your computer and use it in GitHub Desktop.
Save Omranic/1c3134cd294759df97e149d00625ab6c to your computer and use it in GitHub Desktop.
Part of rinvex/repository implementation examples
<?php
namespace App\Repositories;
use Rinvex\Repository\Repositories\EloquentRepository;
class UserRepository extends EloquentRepository
{
protected $repositoryId = 'rinvex.repository.user';
protected $model = 'App\User';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment