Left file: appwork-v1_2_0/laravel-starter/config/services.php  
Right file: appwork-v1_2_1/laravel-starter/config/services.php  
1 <?php = 1 <?php
2     2  
3 return [   3 return [
4     4  
5     /*   5     /*
6     |--------------------------------------------------------------------------   6     |--------------------------------------------------------------------------
7     | Third Party Services   7     | Third Party Services
8     |--------------------------------------------------------------------------   8     |--------------------------------------------------------------------------
9     |   9     |
10     | This file is for storing the credentials for third party services such   10     | This file is for storing the credentials for third party services such
11     | as Stripe, Mailgun, SparkPost and others. This file provides a sane   11     | as Stripe, Mailgun, SparkPost and others. This file provides a sane
12     | default location for this type of information, allowing packages   12     | default location for this type of information, allowing packages
13     | to have a conventional place to find your various credentials.   13     | to have a conventional place to find your various credentials.
14     |   14     |
15     */   15     */
16     16  
17     'mailgun' => [   17     'mailgun' => [
18         'domain' => env('MAILGUN_DOMAIN'),   18         'domain' => env('MAILGUN_DOMAIN'),
19         'secret' => env('MAILGUN_SECRET'),   19         'secret' => env('MAILGUN_SECRET'),
    -+ 20         'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
20     ], = 21     ],
21     22  
22     'ses' => [   23     'ses' => [
23         'key' => env('SES_KEY'),   24         'key' => env('SES_KEY'),
24         'secret' => env('SES_SECRET'),   25         'secret' => env('SES_SECRET'),
25         'region' => env('SES_REGION', 'us-east-1'),   26         'region' => env('SES_REGION', 'us-east-1'),
26     ],   27     ],
27     28  
28     'sparkpost' => [   29     'sparkpost' => [
29         'secret' => env('SPARKPOST_SECRET'),   30         'secret' => env('SPARKPOST_SECRET'),
30     ],   31     ],
31     32  
32     'stripe' => [   33     'stripe' => [
33         'model' => App\User::class,   34         'model' => App\User::class,
34         'key' => env('STRIPE_KEY'),   35         'key' => env('STRIPE_KEY'),
35         'secret' => env('STRIPE_SECRET'),   36         'secret' => env('STRIPE_SECRET'),
    -+ 37         'webhook' => [
      38             'secret' => env('STRIPE_WEBHOOK_SECRET'),
      39             'tolerance' => env('STRIPE_WEBHOOK_TOLERANCE', 300),
      40         ],
36     ], = 41     ],
37     42  
38 ];   43 ];