index.json.jbuilder 142 B

1234
  1. json.array!(@orders) do |order|
  2. json.extract! order, :id, :name, :address, :email, :pay_type
  3. json.url order_url(order, format: :json)
  4. end