ADVERTISEMENT

SMC to convert portions of head office space into small urban farms for support staff to grow fresh food, earn more

Published Mar 7, 2021 05:00 pm

San Miguel Corporation is building its first urban farm within its sprawling head office complex in Ortigas to help build self-sufficiency among its support staff and help put agriculture back into the spotlight.
 
Under the program, interested employees and workers doing support jobs will be given a plot of land in what will be dubbed as SMC’s “Malasakit Garden”, for them to use as a space to grow whatever produce they like.
 
They can then choose to either bring home their harvest, or to sell these for a profit at a small Malasakit Garden Farmers market stall to be set up at the complex.
 
“In this time of pandemic, manyFilipinos are looking for ways to earn extra income, or at the very least, make sure they have sufficient supply of food. Realizing the importance of food security, many are also exploring growing their own food. That is why we thought of this simple project to help our maintenance workers, as well as our own employees,” said SMC president Ramon S. Ang.
 
“The land is available and good for planting. It doesn’t take so much to try and help people, especially those who help us do our work everyday. We partnered with a non-profit, SEEDPhilippines, and they will be the ones teaching our people how to succeed at urban farming. With this, we hope the Malasakit Garden can augment healthy food supply for some of our workers, or serve as an additional source of income,” Ang added.
 
“Our hope is that they can really grow to like planting, they can hone their skills, and it becomes a practical life skill for them,” he said, adding that many support workers actually grew up in the province and know how to plant, except, there is no land for them todo it here in the city,” Ang said.
 
Ang said the project willhopefully encourage more businesses to transform urban spaces into functioningecological spaces and help agriculture flourish. 
 
Early on in the pandemic, SMC committed to protect the jobs of all its employees and extended workforce and provide various support for their frontline staff, including free swab testing and access to bikes so they can move around safely.
 
SMC has tapped SEED Philippines to ensure the success of Malasakit Garden. SEED’s advocacy is to help eradicate poverty in low-income families through specialized programs on agri-entrepreneurship.They teach organic vegetable production, soil management, planting materials production, and pest and disease management.
 
SEED will also be serving as mentors during the early stages of the project.
 
“We are excited to see how our participants will make this project their own. They will have freedom to decide what they want to plant, and how they will make the garden thrive. Our role ultimately is to provide them support so they can make the most of the lot,” Ang shares.
 
Recently, a bill promoting urban agriculture passed third reading in Congress. House Bill no. 8385 intends to promote urban agriculture nationwide and help boost the country’s food security.
 
SMC, for its part, has been doing what it can to help boost the country’s food supply and support farmers and entrepreneurs. It has launched various livelihood training programs for communities in Bulacan and Quezon province.
 
Meanwhile, its recently-openedSMC-Better World Diliman community center helps boost farm incomes by providing a ready-market for farmers’ excess produce.
 
Through the help of NGO RuralRising Philippines, SMC-Better World Diliman has shown good results, selling over half a million kilos of produce in just six months.
 
SMC also purchases directly from local farmers for a number of its raw material requirements. At the height of the COVID-19 pandemic, the company reported its highest purchase of corn, cassava, among others.

Read more about farming and gardening at agriculture.com.ph

Related Tags

sanmiguelcorporation pressrelease urbanfarm agriculture SMC
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.