package views
import (
"strconv"
"github.com/rjNemo/rentease/internal/domains/booking"
)
templ LineItem(item *booking.Item) {
|
{ item.Item } |
{ strconv.Itoa(item.Quantity) } |
{ strconv.FormatFloat(item.Price, 'f', 2, 64) } |
{ item.PaymentMethod } |
{ item.PaymentStatus } |
}