Lavalite package that provides sampleset management facility for the cms. ## Installation Begin by installing this package through Composer. Edit your project's `composer.json` file to require `litepci/sampleset`. "litepci/sampleset": "dev-master" Next, update Composer from the Terminal: composer update Once this operation completes execute below cammnds in command line to finalize installation. Litepci\Sampleset\Providers\SamplesetServiceProvider::class, And also add it to alias 'Sampleset' => Litepci\Sampleset\Facades\Sampleset::class, ## Publishing files and migraiting database. **Migration and seeds** php artisan migrate php artisan db:seed --class=Litepci\\SamplesetTableSeeder **Publishing configuration** php artisan vendor:publish --provider="Litepci\Sampleset\Providers\SamplesetServiceProvider" --tag="config" **Publishing language** php artisan vendor:publish --provider="Litepci\Sampleset\Providers\SamplesetServiceProvider" --tag="lang" **Publishing views** php artisan vendor:publish --provider="Litepci\Sampleset\Providers\SamplesetServiceProvider" --tag="view" ## Usage