class DiscussionRepository

Methods

Builder
query()

<p>Get a new query builder for the discussions table.</p>

findOrFail(int $id, User $user = null)

<p>Find a discussion by ID, optionally making sure it is visible to a certain user, or throw an exception.</p>

array
getReadIds(User $user)

<p>Get the IDs of discussions which a user has read completely.</p>

Builder
scopeVisibleTo(Builder $query, User $user = null)

<p>Scope a query to only include records that are visible to a user.</p>

Details

Builder query()

<p>Get a new query builder for the discussions table.</p>

Return Value

Builder

Discussion findOrFail(int $id, User $user = null)

<p>Find a discussion by ID, optionally making sure it is visible to a certain user, or throw an exception.</p>

Parameters

int $id
User $user

Return Value

Discussion

array getReadIds(User $user)

<p>Get the IDs of discussions which a user has read completely.</p>

Parameters

User $user

Return Value

array

protected Builder scopeVisibleTo(Builder $query, User $user = null)

<p>Scope a query to only include records that are visible to a user.</p>

Parameters

Builder $query
User $user

Return Value

Builder