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