package views import ( "fmt" "strconv" "github.com/rjNemo/rentease/internal/domains/booking" ) templ BookingById(booking *booking.Booking, items, platforms, paymentMethods []string) { @BaseLayout() {
| # | Item | Quantity | Price | Payment Method | Payment Status |
|---|---|---|---|---|---|
| { item.Item } | { strconv.Itoa(item.Quantity) } | { item.Price } | { item.PaymentMethod } | { item.PaymentStatus } |