Skip to content

Instantly share code, notes, and snippets.

@WyattCast44
Created April 24, 2019 02:03
Show Gist options
  • Save WyattCast44/5fadb528235577e3b281a3e28cc5fa3f to your computer and use it in GitHub Desktop.
Save WyattCast44/5fadb528235577e3b281a3e28cc5fa3f to your computer and use it in GitHub Desktop.
<?php
if (!function_exists('applyActive')) {
function applyActive($route_name)
{
return (Route::current()->getName() === $route_name) ? 'active' : '';
}
}
if (!function_exists('isCurrentRoute')) {
function isCurrentRoute($route_name)
{
return (Route::current()->getName() === $route_name) ? true : false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment