top of page

Corporate Catering & Parties

Does your office require catering for a corporate event? Or do you have a children's party coming up and need bespoke, healthy lunchboxes for all the guests?

​

Our team can prepare and deliver customized meals based on your specific needs and preferences.

​

Spaces are limited as we book up quickly—everyone loves our kids' meals (even the adults!).

​

Contact our team today to discuss your requirements, or purchase our pre-designed party boxes directly from our website. Just choose the quantity you need.

 

Call us at 0402 089 484 or email us at info@lillyslittlelunchbox.com

​​

​

Recently catered

​

Urban Utilities.jpg

Brisane 2032 Olympic Planning Committee

BLOCK

PPA.png
All Hallows.jpg
bottom of page
import { ok, serverError } from 'wix-http-functions'; export function post_webhook(request) { // Extract data from the request body return request.body.text() .then(body => { const data = JSON.parse(body); // Parse JSON data console.log('Received webhook data:', data); // Optionally send this data to Zapier return fetch('https://hooks.zapier.com/hooks/catch/21241255/2zk3jow/', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(data) }) .then(() => ok({ body: 'Webhook received and forwarded to Zapier' })) .catch(error => serverError({ body: 'Error sending data to Zapier' })); }) .catch(error => serverError({ body: 'Error parsing webhook data' })); }