PHP code example of pashkevich / laravel-wallet

1. Go to this page and download the library: Download pashkevich/laravel-wallet library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

pashkevich / laravel-wallet example snippets




return [
    'apple' => [
        //
    ],

    'google' => [
        //
    ],
];

use Pashkevich\Wallet\Facades\Wallet;

$pass = new Pass(...);

Wallet::provider('apple')->createPass($pass);

Wallet::provider('google')->createPass($pass);
bash
php artisan vendor:publish --tag=laravel-wallet