| 1 | <?php |
||
| 8 | class EloquentRepository extends RepositoryAbstract implements Repository |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Get repository model. |
||
| 12 | * |
||
| 13 | * @return \Illuminate\Database\Eloquent\Model|\Illuminate\Database\Eloquent\Builder |
||
| 14 | */ |
||
| 15 | public function getModel() |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Get all published articles. |
||
| 22 | * |
||
| 23 | * @return \Illuminate\Database\Eloquent\Collection |
||
| 24 | */ |
||
| 25 | public function getAllPublished() |
||
| 29 | } |
||
| 30 |