ADVERTISEMENT

Chloei Capili and Christian Pabelico: Shifting from Corporate to Agriculture

Published Mar 22, 2024 01:19 am

At the start of the pandemic, we wanted to be far away from the urban setting and be closer to nature as much as possible. One of us has a home in Cavite that allows us to escape from our Pasig city life. Both of us have been working in a corporate setting within Ortigas, Pasig for many years (and are currently still actively working in this setting).

received_1271211830224311.jpeg
Millennial couple Chloe Capili and Christian Pabelicofound a way to break free from the routine of a corporate job, wherein on the weekends they are happyfull-time farmers.

Setting Foot on the Farm

We didn’t have direct goals for developing a farm before the pandemic. I was focused on building my career in digital marketing and I only saw opportunities in this industry. However, when we set foot on our farm, only then were we able to realize all the amazing opportunities this land could give us.

Starting an agriculture journey will always have its challenges. When we acquired our farmland, it was not ready for us to just start planting seeds. There were coffee trees and banana trees at every other meter, and there were neither water nor electricity sources whatsoever. We spent several
months converting our farmland to make it suitable for planting vegetables and citrus.

Facing Unknown Difficulties

Along our agriculture journey, we are facing challenges that are completely different from what we’re used to in a corporate setting. Challenges that require a lot of strength and physical energy, as well as the need to learn the technicalities of using fertilizers, pesticides, and so on. There were so many
possibilities! And with the wealth of information available online—from YouTube videos, Facebook communities, e-commerce solutions, and more—we are often faced with unlimited choices and opinions. Sometimes they’re helpful and sometimes you confuse yourself even more.

WORK FROM FARM.JPG
The couple has faced challenges that are completely different from what they are used to in a corporate setting.

Until now, when it’s been more than 2 years since we started our agriculture journey, we have equipped ourselves with proper discernment and patience in making decisions for the farm. We are open-minded about the fact that we won’t always have the answers to the challenges we face right away but we seek our best judgement through researching and consulting experts. And the best thing about agriculture is that you can always try again and improve the next time.

A Wonderful Entrepreneurial Journey

We have embarked on an entrepreneurial journey where our farm will be integral to our livelihood. We are setting up to establish agribusiness opportunities for our family. At the start of 2024, we started the operation of our quail farm, which we also documented on YouTube. And in the next few months, we are looking to establish our bottled food brand that uses raw materials from our farm, such as our calamansi and hot peppers.

If we want to have a bright future in agriculture in this country, we need to start elevating how young people see farmers and the agriculture industry as a whole. And the reason why we proactively document our journeys and publish them on our social media channels is to inspire young people like us to get into farming. We have received wonderful comments where young people are also dreaming of something similar, and we want to help them as much as we can to realize that those dreams are possible!

Related Tags

agriculture agribusiness
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.