News

Laravel Carbon Macros

Published
Laravel Carbon Macros image

Laravel Carbon Macros is a handy collection of Carbon date helper macros for Laravel projects by Dan Soppelsa. It provides country-specific important dates for the US, Canda, Brazil, and Ukraine:

$carbon = new Illuminate\Support\Carbon;
 
// US date examples
$instance->isNewYearsDay();
$instance->isIndependenceDay();
$instance->isAmericanThanksgiving();
 
// CA date examples
$instance->isBoxingDay();
$instance->isCanadianThanksgiving();
$instance->isRemembranceDay();
 
// Brazil examples
$instance->isTiradentesDay();
$instance->isBrazilianIndependenceDay();
 
// Ukraine examples
$instance->isUkrainianIndependenceDay();
$instance->isKupalaNight();

Here’s the complete list of macros provided at the time of writing:

US Dates

  • isNewYearsDay
  • isMlkJrDay
  • isPresidentsDay
  • isGoodFriday
  • isEasterSunday
  • isMemorialDay
  • isIndependenceDay
  • isLaborDay
  • isColumbusDay
  • isVeteransDay
  • isAmericanThanksgiving
  • isChristmasDay
  • isNewYearsEve

Canadian Dates

  • isNewYearsDay
  • isFamilyDay
  • isGoodFriday
  • isEasterSunday
  • isVictoriaDay
  • isCanadaDay
  • isCivicHoliday
  • isLabourDay
  • isCanadianThanksgiving
  • isRemembranceDay
  • isChristmasDay
  • isBoxingDay
  • isNewYearsEve

Brazilian Dates

  • isBrazilianIndependenceDay
  • isBrazilianLaborDay
  • isBrazilianRepublicProclamationDay
  • isTheDayOfOurLadyAparecida
  • isTiradentesDay

Ukrainian Dates

  • isKupalaNight
  • isUkraineDefenderDay
  • isUkrainianConstitutionDay
  • isUkrainianIndependenceDay
  • isUkrainianLabourDay
  • isVictoryDayOverNazism

These macros are automatically registered in Laravel projects from the package’s service provider. It’s unclear if the author has planned adding other countries or is open to pull requests for additional countries. This package is an excellent reminder that Carbon provides macros you can use to create more readable code around your dates that might not ship out-of-the-box with Carbon.

Learn More

You can learn more about this package, get full installation instructions, and view the source code on GitHub. If you’re interested in adding another country, I’d suggest checking out the package’s Traits folder that contains dates for Brazil and Ukraine.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Filed in

Sponsored

tinkerwell logo
Tinkerwell

Enjoy coding and debugging in an editor designed for fast feedback and quick iterations. It's like a shell for your application – but with multi-line editing, code completion, and more.

Visit Tinkerwell

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article