Lavalite package that provides cryptocurrency management facility for the cms.

## Installation

Begin by installing this package through Composer. Edit your project's `composer.json` file to require `bradleytyler441/cryptocurrency`.

    "bradleytyler441/cryptocurrency": "dev-master"

Next, update Composer from the Terminal:

    composer update

Once this operation completes execute below cammnds in command line to finalize installation.

    Bradleytyler441\Cryptocurrency\Providers\CryptocurrencyServiceProvider::class,

And also add it to alias

    'Cryptocurrency'  => Bradleytyler441\Cryptocurrency\Facades\Cryptocurrency::class,

## Publishing files and migraiting database.

**Migration and seeds**

    php artisan migrate
    php artisan db:seed --class=Bradleytyler441\\CryptocurrencyTableSeeder

**Publishing configuration**

    php artisan vendor:publish --provider="Bradleytyler441\Cryptocurrency\Providers\CryptocurrencyServiceProvider" --tag="config"

**Publishing language**

    php artisan vendor:publish --provider="Bradleytyler441\Cryptocurrency\Providers\CryptocurrencyServiceProvider" --tag="lang"

**Publishing views**

    php artisan vendor:publish --provider="Bradleytyler441\Cryptocurrency\Providers\CryptocurrencyServiceProvider" --tag="view"


## Usage