Task #37
openBusiness Listing View (Listing & Display)
0%
Description
*Display Services List
Show all available services posted by users based on location and category.
*Service Detail View
Display complete service information such as title, description, provider details, and location.
*Filter & Search Services
Allow users to search services using keywords and apply filters like category and place.
***Table: user_skills_services (Service View)
*id-INT (PK)-Service ID
*user_id-INT (FK)-Service provider
*category_id-INT (FK)-Service category
*skill_service_id-INT (FK)-Master service
*skill_title-VARCHAR-Service title
*description-TEXT-Service description
*place-VARCHAR-Service location
*latitude-VARCHAR-Latitude
*longitude VARCHAR Longitude
*created_at DATETIME Service created time
*Each record represents one service provided by a user.
*Used to populate service listing pages and service detail pages.
*Helps users discover nearby services easily.
***Validations
*Only active services should be visible to users.
*Services must be linked to a valid category.
*Services without mandatory details (title, category, location) should not be displayed.
*Pagination should be applied when service count is high.
*Deleted or blocked services must not appear in service view.