|
преди 4 години | |
---|---|---|
.. | ||
src | преди 4 години | |
tests | преди 4 години | |
.gitignore | преди 4 години | |
.travis.yml | преди 4 години | |
CONTRIBUTING.md | преди 4 години | |
README.md | преди 4 години | |
composer.json | преди 4 години | |
phpunit.xml | преди 4 години |
The helper class for Laravel 4/5 applications to get active class base on current route.
Add this package to your composer.json
file and run composer update
once.
For Laravel 5
"hieu-le/active": "~2.0"
or for Laravel 4
"hieu-le/active": "~1.0"
If you use this package in Laravel, the most suitable version will be selected base on the version of Laravel package.
Append this line to your providers
array in config/app.php
'HieuLe\Active\ActiveServiceProvider',
Append this line to your aliases
array in config/app.php
'Active' => 'HieuLe\Active\Facades\Active',
Support new method Active::routePattern
. This method will check the current route name with an array of patterns instead of an array of route names.
Active::uri
. This method will check the current URI (with the leading slash /
)Active::query
. This method will check whether the value of an query string parameter equals to or contains a specified value.Active::routeParam
. This method check the current route name and route parameters with some specific values.For more details about usage see: this page