Laravel package for managing hierarchies within your application
composer require carving-i-t/hierarchies
php artisan vendor:publish --provider="CarvingIT\Hierarchies\HierarchiesServiceProvider"
php artisan migrate
The package downloads font-awesome under vendor/components. Create a symbolic link pointing to that under public/.
cd public/assets
ln -s ../../vendor/components/font-awesome
To include hierarchies in your view (that has the header/footer and navs), just include the view.
@include('vendor.hierarchies.index')
The view also gets published so you can make changes.
config/hierarchies.php can be edited to adjust the following settings.
-
base_path
-
fontawesome_path that is relative to the document root of your application
-
middleware[s] that apply to this module.
-
Position - Model for positions created.
-
PositionUser - Model recording association of a user with a position.