falcon758 / lavalitepayments
Payments package for shopping.
Package info
github.com/falcon758/lavalitepayments
Language:HTML
pkg:composer/falcon758/lavalitepayments
1.11
2020-04-02 01:11 UTC
Requires
- php: >=5.6.4
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
Lavalite package that provides payments management facility for the cms.
Installation
Begin by installing this package through Composer. Edit your project's composer.json file to require shopping/payments.
"falcon758/lavalitepayments": "*"
Next, update Composer from the Terminal:
composer update
Once this operation completes execute below cammnds in command line to finalize installation.
Shopping\Payments\Providers\PaymentsServiceProvider::class,
And also add it to alias
'Payments' => Shopping\Payments\Facades\Payments::class,
Publishing files and migraiting database.
Migration and seeds
php artisan migrate
php artisan db:seed --class=Shopping\\PaymentsTableSeeder
Publishing configuration
php artisan vendor:publish --provider="Shopping\Payments\Providers\PaymentsServiceProvider" --tag="config"
Publishing language
php artisan vendor:publish --provider="Shopping\Payments\Providers\PaymentsServiceProvider" --tag="lang"
Publishing views
php artisan vendor:publish --provider="Shopping\Payments\Providers\PaymentsServiceProvider" --tag="view"