Altwallets
Installation
Add the following line to your /composer.json file's "require" array., (*1)
"virtualvendors/altwallets": "dev-master",
Run composer update to install the package., (*2)
Add the following line to your /app/config/app.php config file's "providers" array., (*3)
'Virtualvendors\Altwallets\AltwalletsServiceProvider',
Update the following key-value pair in your /app/config/auth.php config file., (*4)
'model' => 'Virtualvendors\Altwallets\User',
Make sure to configure your database in /app/config/database.php., (*5)
Run the following artisan command to guide you through the installation process., (*6)
$ php artisan altwallets:install
In effect, this command does the following:, (*7)
- Publish configuration
- Publish migrations
- Publish assets
- Runs migrations
- Creates super user
Remove the default provided / route from /app/routes.php. This file should, in effect, be empty., (*8)
You may now access Altwallets via the browser., (*9)