Spatie\BladeJavaScript\Transformers\BooleanTransformer::transform PHP Method

transform() public method

public transform ( boolean $value ) : string
$value boolean
return string
    public function transform($value) : string
    {
        return $value ? 'true' : 'false';
    }
BooleanTransformer