protected function compileStyle($expression): string
{
return $this->phpTag . "echo 'class=\"'.\$this->runtimeStyle($expression).'\"' ?>";
}
protected function compileClass($expression): string
{
return $this->phpTag . "echo 'class=\"'.\$this->runtimeStyle($expression).'\"'; ?>";
}
Looks like the @Style directive was copy/pasted from the @Class one, so it doesnt actually work (BladeOne.php
https://github.com/EFTEC/BladeOne/blob/4.18/lib/BladeOne.php#L4323C1-L4331C6