Thanks for your time!
I’m building a service-booking solution.
If I had just one service, this would be easy. But in my case, I have hundreds.
The solution so far:
- There are three tables: Services, Time slots, and Bookings
- Services is related to both the time slots and bookings
- The booking table includes a form
- When I share the link to this form with users from my website, I am using URL parameters to pre-fill the name or ID of the Service. Thus, when the user submits the form, they create a new booking record, pre-linked to the service.
Question
In the booking form, how can I filter and display only the time slots related to each Service?
Many thanks,
Dean