Warning
The package is currently under development.
You can install the package via composer:
composer require pashkevich/laravel-wallet
You can publish the config file with:
php artisan vendor:publish --tag=laravel-wallet
This is the contents of the file that will be published at config/wallet.php
:
<?php
return [
'apple' => [
//
],
'google' => [
//
],
];
use Pashkevich\Wallet\Facades\Wallet;
$pass = new Pass(...);
Wallet::provider('apple')->createPass($pass);
Wallet::provider('google')->createPass($pass);
composer test
Please see CONTRIBUTING for details.
If you discover any security related issues, please email siarheipashkveich@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.