Skip to content

Instantly share code, notes, and snippets.

View ricogoh's full-sized avatar

ricogoh ricogoh

  • Malaysia
View GitHub Profile
@ricogoh
ricogoh / EloquentFooRepository.php
Created May 25, 2017 09:36 — forked from thepsion5/EloquentFooRepository.php
Example implementation of a Eloquent-based repository that provides a fluent interface for sorting and pagination without exposing the underlying model API.
<?php
class EloquenFooRepository
{
/**
* The base eloquent model
* @var Eloquent
*/
protected $model;