Skip to content

Instantly share code, notes, and snippets.

@Mombuyish
Created April 26, 2017 17:05
Show Gist options
  • Save Mombuyish/1943a8c52c4d17ffaf0163c335929f1b to your computer and use it in GitHub Desktop.
Save Mombuyish/1943a8c52c4d17ffaf0163c335929f1b to your computer and use it in GitHub Desktop.
<?php
class PostRepository
{
protected $model;
public function __construct(Post $model)
{
$this->model = $model;
}
public function getActiveAll()
{
return $this->model->where('status', 1)->get();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment