Components\Posts\Services\PostsService::getRecent PHP Method

getRecent() public method

Get recent posts
public getRecent ( string $type = 'post', integer $qty = 10 ) : Object
$type string [description]
$qty integer [description]
return Object
    public function getRecent($type = 'post', $qty = 10)
    {
        return Post::type($type)->target('public')->published()->latest()->take($qty)->get();
    }