public static void show(Long id) {
    Bowl bowl = Bowl.findById(id);

    List<Participant> bowlParticipants = Participant.calculateShares(bowl);
    List<Bill> bills = Bill.generateByBowl(bowl);

    render(bowl, bowlParticipants, bills);
  }