I am having a hard time finding out how to add PHP helper functions in a Blade template.
For example, I want to use this function:
function is_active($uri) { return Request::is($uri) ? 'active' : ''; }
With something like this:
{{ Helper::is_active('home') }}
Thanks
change function to a class
class Helpers
{
public static function is_active($uri) { return Request::is($uri) ? 'active' : ''; }
}
then on config\app.php define it as an alias.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community