Kyle
Kyle
But it's not Jade syntax. jade.php must match with the JS engine. However, with the JS one, we can write it with no comma: ``` jade a(href="/login" title="View...") Login ```...
Do not hesite to use and submit pull requests to mine: https://github.com/kylekatarnls/jade-php
Indeed when checking year 2021, the config generated by 2022 holidays is not loaded, that's what substitute date is not working when source date is not in the same year...
Thanks, this is a very good work-around. I could mention this in the readme and I will check we don't have holidays that could overflow on a different year in...
Hello, As of now, alternative calendars (Hijri/Jewish/Lunar) are not compatible with conditional syntax. I started a fix, you can try it by requiring: ```json "require": { ... "cmixin/business-day": "dev-fix/issue-84-support-alt-calendar-with-conditions as...
Can you please add `'= 10 dhu al-hijjah'` in your config and check: `Carbon::getYearHolidays()` for each year and for each day what day of week it is, so I can...
My 2 cents, this would be way faster: ```php public function removeClass($classes) { if (!is_array($classes)) { $classes = explode(' ', $classes); } $thisClasses = explode(' ', Helpers::arrayGet($this->attributes, 'class')); $this->attributes['class'] =...
For the record, ISO format is already supported by PHP `DateTime` so both Carbon and JenssegersDate inherit it: ```php new \DateTime('2022W23') new \Carbon\Carbon('2022W23') new \Jenssegers\Date\Date('2022W23') ``` Maybe some other syntax...
Numbers of what? Because if you mean the day number, then in French (including fr_CA) day number should only have ordinal for the `1` => `1er`. All other days does...
Those kind of errors happen when trying to run a symfony/translation version that is not compatible with your PHP version (for example when running `composer install` with PHP 7.3 then...