You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 14, 2025. It is now read-only.
how can i use v2 table to print a nested objects table.
let's say i got from backend (laravel controller) a list of products with their sales
(product->with('sales')->get()), and each product has a different number of sales.
i want to show them like this : ( sales table inside each product row)
id | Product | sales |
1 | Product_1 | id | sale | price
1 | sale_1 | price_1
2 | sale_2 | price_2
2 | Product_2 | id | sale | price
3 | sale_3 | price_3
4 | sale_4 | price_4
5 | sale_5 | price_5
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello,
how can i use v2 table to print a nested objects table.
let's say i got from backend (laravel controller) a list of products with their sales
(product->with('sales')->get()), and each product has a different number of sales.
i want to show them like this : ( sales table inside each product row)
The text was updated successfully, but these errors were encountered: