๐ฉโ๐ป Join our community of thousands of amazing developers!
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 ...