HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/ZelfVerkopen/zelfverkopen.nl/config/services.php
<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Third Party Services
    |--------------------------------------------------------------------------
    |
    | This file is for storing the credentials for third party services such
    | as Stripe, Mailgun, Mandrill, and others. This file provides a sane
    | default location for this type of information, allowing packages
    | to have a conventional place to find your various credentials.
    |
    */

    'googleMaps' => [
        'apiKey' => 'AIzaSyAJSdxiWbahIf2xT6O1ifoAbZDxgbEYm4s',
        'apiKeyServer' => 'AIzaSyDFgSTXTJgQcdIslD52LsmE77VbonRE45s',
        'geocodingUrl' => "https://maps.googleapis.com/maps/api/geocode/json"
    ],

    'mailgun' => [
        'domain' => env('MAILGUN_DOMAIN'),
        'secret' => env('MAILGUN_SECRET'),
    ],

    'mandrill' => [
        'secret' => env('MANDRILL_SECRET'),
    ],

    'ses' => [
        'key'    => env('SES_KEY'),
        'secret' => env('SES_SECRET'),
        'region' => 'us-east-1',
    ],

    'stripe' => [
        'model'  => App\User::class,
        'key'    => env('STRIPE_KEY'),
        'secret' => env('STRIPE_SECRET'),
    ],

    'recaptcha' => [
        'client' => '6LciWYghAAAAADny8Q-3VKI_q2cmmJPrSIZJZkdF',
        'server' => '6LciWYghAAAAAIO2KS5UtJdtDX54W5Ff1DepYjWO',
    ],

];