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