This is a Laravel 5 package that provides folder management facility for lavalite framework. ## Installation Begin by installing this package through Composer. Edit your project's `composer.json` file to require `folder/folder`. "folder/folder": "dev-master" Next, update Composer from the Terminal: composer update Once this operation completes execute below cammnds in command line to finalize installation. ```php Folder\Folder\Providers\FolderServiceProvider::class, ``` And also add it to alias ```php 'Folder' => Folder\Folder\Facades\Folder::class, ``` Use the below commands for publishing Migration and seeds php artisan vendor:publish --provider="Folder\Folder\Providers\FolderServiceProvider" --tag="migrations" php artisan vendor:publish --provider="Folder\Folder\Providers\FolderServiceProvider" --tag="seeds" Configuration php artisan vendor:publish --provider="Folder\Folder\Providers\FolderServiceProvider" --tag="config" Language php artisan vendor:publish --provider="Folder\Folder\Providers\FolderServiceProvider" --tag="lang" Views public and admin php artisan vendor:publish --provider="Folder\Folder\Providers\FolderServiceProvider" --tag="view-public" php artisan vendor:publish --provider="Folder\Folder\Providers\FolderServiceProvider" --tag="view-admin" Publish admin views only if it is necessary. ## Usage