phpvms/app/Repositories/NewsRepository.php
2018-03-19 20:50:40 -05:00

35 lines
681 B
PHP

<?php
namespace App\Repositories;
use App\Interfaces\Repository;
use App\Models\News;
use Prettus\Repository\Contracts\CacheableInterface;
use Prettus\Repository\Traits\CacheableRepository;
/**
* Class NewsRepository
* @package App\Repositories
*/
class NewsRepository extends Repository implements CacheableInterface
{
use CacheableRepository;
public function model()
{
return News::class;
}
/**
* Latest news items
* @param int $count
* @return mixed
*/
public function getLatest($count = 5)
{
return $this->orderBy('created_at', 'desc')
->with(['user'])
->paginate($count);
}
}