|GroupComment newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|GroupComment newQuery() * @method static \Illuminate\Database\Eloquent\Builder|GroupComment query() * @method static \Illuminate\Database\Eloquent\Builder|GroupComment whereCaption($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupComment whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupComment whereCwSummary($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupComment whereGroupId($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupComment whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupComment whereInReplyToId($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupComment whereIsNsfw($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupComment whereLikesCount($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupComment whereLocal($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupComment whereMediaIds($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupComment whereMetadata($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupComment whereProfileId($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupComment whereRemoteUrl($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupComment whereRepliesCount($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupComment whereStatus($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupComment whereStatusId($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupComment whereType($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupComment whereUpdatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupComment whereVisibility($value) * * @mixin \Eloquent */ class GroupComment extends Model { use HasFactory; public $guarded = []; public function profile() { return $this->belongsTo(Profile::class); } public function url(): string { return '/group/'.$this->group_id.'/c/'.$this->id; } }