The helper class for Laravel applications (both L4 and L5) to get active class base on current url.
This README file is written for the new 3.x version of this package, which is compatible with the Laravel 5 only.
- If you are using Laravel 4, see the
1.xversions. - If you are using Laravel 5 with the legacy
2.xversion of this package, you can give a try with the3.xversion (whose API is changed totally) or continue with the2.xversion.
Add this package to your composer.json file and run composer update once.
"hieu-le/active": "^3.0"
Append this line to your providers array in config/app.php
HieuLe\Active\ActiveServiceProvider::class,Append this line to your aliases array in config/app.php
'Active' => HieuLe\Active\Facades\Active::class,For more details about usage see: this page
