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
The Order model has the following main attributes:
id — Order id or order number.
user_id — Owner.
items — Items in order.
transactions — Transactions made on order.
statusCode — Status code.
count — Total amount of items in order.
totalPrice — Total price from all items in order.
totalTax — Total tax from all items in order, plus global tax set in config.
totalShipping — Total shipping from all items in order.
total — Total amount to be charged, sums total price, total tax and total shipping.
displayTotalPrice — Total price value formatted for shop display. i.e. "$9.99" instead of just "9.99".
displayTotalTax — Total tax value formatted for shop display. i.e. "$9.99" instead of just "9.99".
displayTotalShipping — Total shipping value formatted for shop display. i.e. "$9.99" instead of just "9.99".
displayTotal — Total amount value formatted for shop display. i.e. "$9.99" instead of just "9.99".
created_at — When the order record was created in the database.
updated_at — Last time when the order was updated.
The text was updated successfully, but these errors were encountered:
Why README.md, for fields and /src/views/generators/migration.blade.php orders table definition is inconsistent? The former field more
look:
/src/views/generators/migration.blade.php:
README.md
The text was updated successfully, but these errors were encountered: