class PostRepository
Methods
findOrFail(int $id, User $actor = null)
Find a post by ID, optionally making sure it is visible to a certain user, or throw an exception.
Collection
array
filterVisibleIds(array $ids, User $actor)
Filter a list of post IDs to only include posts that are visible to a certain user.
int
getIndexForNumber(int $discussionId, int $number, User $actor = null)
Get the position within a discussion where a post with a certain number is. If the post with that number does not exist, the index of the closest post to it will be returned.
Details
at
line 23
Post>
query()
Get a new query builder for the posts table.
at
line 53
Post
findOrFail(int $id, User $actor = null)
Find a post by ID, optionally making sure it is visible to a certain user, or throw an exception.
at
line 69
Collection
findWhere(array $where = [], User $actor = null, array $sort = [], int $count = null, int $start = 0)
Find posts that match certain conditions, optionally making sure they are visible to a certain user, and/or using other criteria.
at
line 91
array
filterVisibleIds(array $ids, User $actor)
Filter a list of post IDs to only include posts that are visible to a certain user.