I have created a custom helper function in laravel like below.
function get_label($value = '') {
return '<span class="label">' . $value . '</span>';
}
When I call the function from controller with value Hello
to the function it returns encoded text <span class="label">Hello</span>
How to remove this encoding from the functions..
via noufalcep