top of page
Search
Writer's pictureCara Aprile

Celebrating National Carers Week!




From 13-19 October 2024, we join Australia in recognising and celebrating the incredible 3 million carers who selflessly provide care to family members and friends.

 

At Lilly's Little Lunchbox, we understand the importance of ongoing support for carers - and we're here to make life a little easier for both carers and those they care for.

 

On this Carers week, we thought this would be the perfect opportunity to announce that Lilly's Little Lunchbox are now a proud NDIS Registered Provider. 

 

We’re excited to offer healthy, dietitian approved meals tailored to support individuals with disabilities.

 

Whether you're a self-managed, plan-managed or agency-managed participant, our nutritious and delicious meals are designed to provide convenience and peace of mind to you and your families.

 

Single-serve meals starting at $2.40

Fully packed lunch boxes from $4 (includes main meal portion, mixed seasonal fruit, veggie sticks & a treat) 


Head to our website or DM us to learn more. Together, we support carers and the ones they care for.



4 views0 comments

Recent Posts

See All

Comments


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' })); }