ADVERTISEMENT
970x220

2023 budget must serve ordinary people, says policy expert

Published Nov 17, 2022 03:16 pm

Lawmakers of the 19th Congress should ensure that the proposed P5.268-trillion national budget for 2023 will be used to prioritize ordinary citizens and steered toward government-private sector partnerships, Stratbase President and Democracy Watch Philippines Lead Convenor Professor Dindo Manhit said.

Dindo Manhit (File Photo)

“At the end of the day, ordinary citizens are actually the main drivers of development, but they need to be given the opportunity. We need to turn these citizens into productive members of society. They earn. They have income. They have livelihood. They consume. That’s what drives economy,” Manhit said in a statement on Thursday, Nov. 17.

Manhit highlighted that about P9.3 billion in confidential and intelligence funds have been allocated to non-security related government agencies.

READ: https://mb.com.ph/2022/10/03/purge-2023-budget-of-confidential-intel-funds-lagman/

The P5.268-trillion budget measure is currently under deliberation by the Senate. It was approved by the House of Representatives last Sept. 30.

READ: https://mb.com.ph/2022/09/28/proposed-p5-268-t-national-budget-for-2023-hurdles-house/

The policy expert underscored that the best way to counter an economic crisis would be to invest in the Filipino people.

“We need to provide them with the opportunity. How? Do they have enough skills? The education system will always be very important. What about post-secondary skills development? Or even tertiary education? Or are they healthy enough to be productive? Those are the two drivers of productivity of our people,” he continued.

Furthermore, Manhit said that the government should work with the private sector.

“It’s good to have them, to listen to them, to engage with them, instead of vilifying them because that’s what former President Duterte did. There is always this perception that the Philippines is controlled by oligarchs or protectionist. But our experience in the Stratbase group is that, as you engage more with big business and conglomerates, they are actually the top tax payers. They are the top job creators and a strong source of investment across the country. Private companies should be seen as a key partner of government," he said.

“Imagine if we give enough incentives to the manufacturing sector. Imagine if we really generate more tourism. Imagine if we continue to play a role and strengthen the business process outsourcing or the KPO, knowledge process outsourcing, as one of our exports–imagine 109 million Filipinos, who are productive, working, earning towards that end. That’s a big consumer base. If this group of people will spend because there’s enough livelihood, not much indebtedness, then you can see a more sustained growth. Consumption economy, which is what drives us, can only be sustained, I believe, from an investment-led growth trajectory, not jobless growth,” Manhit concluded.

The Stratebase Advisory and Research Consultancy Group will host the Pilipinas Conference 2022: Onward to New Beginnings: Sustaining and Improving Philippine Development from Nov. 21 to Nov. 22 to tackle the subject of partnerships between the government and the private sector.

Department of Budget and Management (DBM) Secretary Amenah Pangandaman, Department of Finance (DOF) Secretary Benjamin Diokno, DOF Undersecretary for Fiscal Policy and Monitoring Group Maria Cielo Magno, Department of Trade and Industry (DTI) Secretary Alfredo Pascual, Delegation of the European Union Ambassador and Head Luc Veron will serve as speakers during the Stratbase press conference.

Related Tags

partnership press conference 2023 National Budget P5.268-trillion Dindo Manhit 111722 Stratbase private sector
ADVERTISEMENT
300x250
.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 72px 0 12px; } .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; } li:empty { display: none; } .hidden { display: none; }
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]; // The two offset values // changed to 10 from 1 , 2 const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } function isNearBottom() { return window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 100; } function onScroll() { if (isLoading) return; // Skip if already loading if (isNearBottom()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; // Set flag to prevent multiple calls const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { loadCount++; // Increment only after successful execution }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; // Reset flag after execution }); } } window.addEventListener("scroll", onScroll); }); // Mutation Observer for Newly Loaded Articles const observer = new MutationObserver(() => { const articles = document.querySelectorAll(".articles-observe"); if (articles.length > 0) { observeArticles(articles); } }); observer.observe(document.body, { childList: true, subtree: true }); // 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) { history.pushState(null, null, newUrl); } } }); }, { threshold: 0.1 } ); articles.forEach(article => intersectionObserver.observe(article)); }

Sign up by email to receive news.