orders and products tables.products when creating an order, and the data gets saved in an order_items table. My Order model has a method items() for the relationship, all good so far.total_price for the order based on the sum of unit_price for all selected products multiplied by their respective quantities. I want to save this total_price in the orders table.order_items are saving correctly, the total_price isn't making it to the database when saving the order to the orders table. Any tips on handling this or integrating repeater data with the relationship for accurate calculations? Thanks!

