Method | Description | |
---|---|---|
createComment ( $comment ) : Illuminate\Database\Eloquent\Model | Create a new comment. | |
deleteComment ( $id ) : boolean | Delete a comment. | |
getCommentById ( $id ) : Illuminate\Database\Eloquent\Model | Get a comment by comment id. | |
updateComment ( $id, $body ) : Illuminate\Database\Eloquent\Model | Update a comment's body. |
public createComment ( $comment ) : Illuminate\Database\Eloquent\Model | ||
$comment | object item_id, user_id, body, username, email | |
return | Illuminate\Database\Eloquent\Model |
public deleteComment ( $id ) : boolean | ||
$id | int | |
return | boolean |
public getCommentById ( $id ) : Illuminate\Database\Eloquent\Model | ||
$id | int | |
return | Illuminate\Database\Eloquent\Model |
public updateComment ( $id, $body ) : Illuminate\Database\Eloquent\Model | ||
$id | int | |
$body | string | |
return | Illuminate\Database\Eloquent\Model |