|HashtagFollow newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|HashtagFollow newQuery() * @method static \Illuminate\Database\Eloquent\Builder|HashtagFollow query() * @method static \Illuminate\Database\Eloquent\Builder|HashtagFollow whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|HashtagFollow whereHashtagId($value) * @method static \Illuminate\Database\Eloquent\Builder|HashtagFollow whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|HashtagFollow whereProfileId($value) * @method static \Illuminate\Database\Eloquent\Builder|HashtagFollow whereUpdatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|HashtagFollow whereUserId($value) * * @mixin \Eloquent */ class HashtagFollow extends Model { protected $guarded = []; const MAX_LIMIT = 25; public function hashtag(): BelongsTo { return $this->belongsTo(Hashtag::class); } }