ADVERTISEMENT

Acidre prods Senate to act swiftly on Bagong Balikbayan Act amid OFW reintegration woes

Published Feb 8, 2026 06:37 pm

At A Glance

  • House Committee on Higher and Technical Education Chairman Tingog Party-list Rep. Jude Acidre on Sunday, Feb. 8 called on the Senate to swiftly pass the proposed Bagong Balikbayan Act for the benefit of returning overseas Filipino workers (OFWs) to the Philippines.
Tingog Party-list Rep. Jude Acidre (Elson Quismorio/ MANILA BULLETIN)
Tingog Party-list Rep. Jude Acidre (Elson Quismorio/ MANILA BULLETIN)


House Committee on Higher and Technical Education Chairman Tingog Party-list Rep. Jude Acidre on Sunday, Feb. 8 called on the Senate to swiftly pass the proposed Bagong Balikbayan Act for the benefit of returning overseas Filipino workers (OFWs) to the Philippines.
Acidre made the appeal following the approval and transmittal of the bill by the House of Representatives. It was principally authored by former Speaker, Leyte 1st district Rep. Martin Romualdez.
Embodied in House Bill (HB) No. 6643, the Bagong Balikbayan Act seeks to consolidate reintegration services, expand access to livelihood assistance, and provide a more predictable support system for returning migrant workers and their families.
With OFWs arriving home in large numbers after the holidays, Acidre says the Senate's swift action on the measure would send a strong signal that Congress is ready to match their sacrifices with concrete and lasting reforms.
Acidre, who also authored the measure in both the 19th and 20th Congresses, said it was part of Romualdez’s legislative push as former Speaker to institutionalize long-term protection and reintegration support for OFWs.
The bill--approved by the House on Dec. 16, 2025 and transmitted to the Senate the following day--recognized the returning workers' need for employment, livelihood opportunities, and family support.
The proposed statute aims to address long-standing weaknesses in existing reintegration programs, which lawmakers say often leave returning OFWs unemployed or underemployed months after coming home, despite years of skills and experience gained overseas.
Acidre, who chaired the House Committee on Overseas Workers Affairs during the 19th Congress, said the bill responds to a recurring reality faced by many OFW families at the start of every year.
“Every first quarter of the year, we see OFWs come home with plans to rebuild their lives. This bill ensures they are not left to navigate that transition alone, but are met with clear pathways to work, livelihood, and family stability,” he said.
Under HB No.6643, reintegration assistance will begin as early as six months before an OFW’s return through Migrant Workers Offices abroad. This will allowi workers and their families to plan ahead for employment, entrepreneurship, education or skills upgrading, and psychosocial support.
The measure also mandates the holding of regular job fairs, expanded employment facilitation, and formal recognition of skills and work experience acquired overseas, including the possible grant of appropriate civil service eligibility based on overseas experience.
“For many OFWs, the hardest part is not leaving—it’s coming home,” Acidre said. “They bring back valuable skills, but without recognition and support, those skills often go to waste.”
To reduce bureaucratic delays, the bill establishes centralized digital platforms that allow returnee OFWs to access job matching, training, financial literacy programs, and reintegration services through a single system. This cuts down paperwork and the number of visits to government offices.
Families of returning OFWs are among the direct beneficiaries of the measure, which provides psychosocial counseling, family reintegration support, and access to social protection programs, particularly for distressed and vulnerable households.
The bill is also essential in strengthening protection for undocumented and distressed OFWs. It institutionalizes confidential assistance mechanisms, livelihood training, and access to affordable credit for small enterprises and livelihood projects.
.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); 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() { console.log('scroll event'); 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((data) => { console.log(data); console.log(this); loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); }); // Mutation Observer for Newly Loaded Articles const observer = new MutationObserver(() => { console.log("length: ", articles.length); const articles = document.querySelectorAll(".articles-observe"); if (articles.length > 0) { observeArticles(articles); } }); observer.observe(document.body, { childList: true, subtree: true }); let oberservationCount = 0; // Intersection Observer for Updating URL function observeArticles(articles) { const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl && newUrl !== window.location.pathname) { history.pushState(null, null, newUrl); // Extract metadata const section = entry.target.querySelector('.section-info a:first-of-type')?.textContent?.trim() || ''; const author = entry.target.querySelector('.author-section a')?.textContent?.trim() || ''; const title = entry.target.querySelector('h1, h2, h3, .article-title')?.textContent?.trim() || document.title; // 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') { pSUPERFLY.virtualPage(cleanUrl, { title: title, sections: section, authors: author }); } // Optional: Update document title if (title && title !== document.title) { document.title = title; } console.log('Chartbeat virtual page tracked:', { url: cleanUrl, section: section, author: author, title: title }); } } }); }, { threshold: 0.1 } ); articles.forEach(article => { console.log(oberservationCount++); intersectionObserver.observe(article) }); }
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 }}

Sign up by email to receive news.