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