Results 47 comments of Federico Liva
trafficstars

This is another case: ``` scss @include component(header) { @include option(stick) { @include component(addsearch) { @include part(button) { color: white; } } } } ``` Given output: ``` css .header.\--stick...

Thank you very much! Il giorno lun 28 set 2015 23:51 Chunlong [email protected] ha scritto: > this is a nice suggestion. I will do this later > > — >...

Removing the array type hint in the first parameter of the constructor solves the problem. Il mer 27 apr 2016, 00:42 Lito [email protected] ha scritto: > Ok, I will check...

I'm also interested, can I help in any way?

Also for me Trying to translate any Chinese string, the result is always an empty string.

I just noticed one interesting thing... ```php $slugify->slugify('活动日起'); ``` It returns an empty string, but... ```php $slugify->activateRuleSet('chinese') ->slugify('活动日起'); ``` It correctly returns **huodongriqi** that is the expected output. I therefore...

Ok @yelnyaface this is not a bug. The documentation expressly states that, for obvious reasons, not all rules are active by default, because conflicts would arise. It is therefore right...

I think you could use ```php $slugify->activateRuleSet(['default', 'german', 'chinese']) ->slugify('活动日起'); ``` specifying all yout activable languages and their ordering

I see Nova using a Illuminate\Database\Eloquent\Relations\Pivot instance to do the pivot rescue. I guess that's why events don't get launched. However, the events at the pivot update don't work that...