appstract / laravel-blade-directives

A collection of nice Laravel Blade directives
MIT License
860 stars 75 forks source link

@fa including a comma in the class second param #22

Closed danielmarkavis closed 7 years ago

danielmarkavis commented 7 years ago

@fa('facebook', 'fa-spin')

gives

adding a comma after "fa-facebook".

teuunn commented 7 years ago

@danielmarkavis sure you've pulled in latest release (published 2 hours ago)? I cannot reproduce.

gizburdt commented 7 years ago

Should be fixed in 0.5.2. Please run composer update :)

danielmarkavis commented 7 years ago

Ah yes I was doing this

@fa('facebook', 'fa-spin')

but this works

@fa('facebook, fa-spin')

gizburdt commented 7 years ago

This should work: @fa('facebook', 'fa-spin')

Just update to the newest version :)

danielmarkavis commented 7 years ago

Yes it does now, I think I had some caching issues.