โ˜… A mini package to calculate public holidays in a country

1 ยท Freek Van der Herten ยท Jan. 17, 2024, 1:33 p.m.
We released a mini package called spatie/holidays that can calculate the public holidays of a country. ou can get all holidays for a country by using the get method. use Spatie\Holidays\Holiday; // returns an array of Belgian holidays // for the current year $holidays = Holidays::for('be')->get(); Alternatively, you could also pass an instance of Country to the for method. use Spatie\Holidays\Holiday; use Spatie\Holidays\Countries\Belgium; // returns an array of Belgian holidays // for the ...