How can i add table under resource without any relation
I have order resource and under that resource in the view or edit i want to add another table. In that table i will add button in each item "add to cart" in every add the item will go to order_items.
2 Replies
I think you could create a table widget
https://filamentphp.com/docs/3.x/panels/dashboard#table-widgets
And display this in your resource page
https://filamentphp.com/docs/3.x/panels/resources/widgets#displaying-a-widget-on-a-resource-page
Thank you will try