File size: 329 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 |
@bookings.each do |booking|
json.set! booking.id do
json.extract! @booking, :id, :check_in, :check_out, :guest_id, :spot_id, :num_guest
end
end
# @bookings.each do |booking|
# json.set! booking.id do
# json.extract! booking, :id, :check_in, :check_out, :guest_id, :spot_id, :num_guests
# end
# end |