Versions in this module Expand all Collapse all v0 v0.0.2 Oct 19, 2024 v0.0.1 Oct 7, 2024 Changes in this version + type Filter struct + Limit int + Order string + Page int + Search string + Sort string + func New(sort, order string) *Filter + func (s *Filter) ApplyOrder(db *gorm.DB, tbName *string) *gorm.DB + func (s *Filter) ApplyPagination(db *gorm.DB) *gorm.DB + func (s *Filter) ApplySearchLike(db *gorm.DB, columns ...string) *gorm.DB + func (s *Filter) CalcPages(count int64) int64