⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
dalily-1.dev-unit.com
/
config
/
View File Name :
cashier.php
<?php use Laravel\Cashier\Invoices\DompdfInvoiceRenderer; return [ /* |-------------------------------------------------------------------------- | Stripe Keys |-------------------------------------------------------------------------- | | The Stripe publishable key and secret key give you access to Stripe's | API. The "publishable" key is typically used when interacting with | Stripe.js while the "secret" key accesses private API endpoints. | */ 'key' => 'pk_test_51JAbnoDHsbz9CBNMjbDtUrA8pfBWkC9yvXqzFQYHeEJokRKFvpAedEruhqCxJhzqOflDi0KH1E020J5kitkMWV4q00fl2LBk6p', 'secret' => 'sk_test_51JAbnoDHsbz9CBNM3FjZDwFH9rC3sr8q06vu9dDS0cjzY0o7a0VnC5KbcED1YUAEcryuro0xkDUKq8rKqVi1R9SX00idI7OL7i', /* |-------------------------------------------------------------------------- | Cashier Path |-------------------------------------------------------------------------- | | This is the base URI path where Cashier's views, such as the payment | verification screen, will be available from. You're free to tweak | this path according to your preferences and application design. | */ 'path' => env('CASHIER_PATH', 'stripe'), /* |-------------------------------------------------------------------------- | Stripe Webhooks |-------------------------------------------------------------------------- | | Your Stripe webhook secret is used to prevent unauthorized requests to | your Stripe webhook handling controllers. The tolerance setting will | check the drift between the current time and the signed request's. | */ 'webhook' => [ 'secret' => 'whsec_zH3RykA7qTcP8tWuSmxSl9lTHLzQHyTV', 'tolerance' => env('STRIPE_WEBHOOK_TOLERANCE', 300), ], /* |-------------------------------------------------------------------------- | Currency |-------------------------------------------------------------------------- | | This is the default currency that will be used when generating charges | from your application. Of course, you are welcome to use any of the | various world currencies that are currently supported via Stripe. | */ 'currency' => env('CASHIER_CURRENCY', 'usd'), /* |-------------------------------------------------------------------------- | Currency Locale |-------------------------------------------------------------------------- | | This is the default locale in which your money values are formatted in | for display. To utilize other locales besides the default en locale | verify you have the "intl" PHP extension installed on the system. | */ 'currency_locale' => env('CASHIER_CURRENCY_LOCALE', 'en'), /* |-------------------------------------------------------------------------- | Payment Confirmation Notification |-------------------------------------------------------------------------- | | If this setting is enabled, Cashier will automatically notify customers | whose payments require additional verification. You should listen to | Stripe's webhooks in order for this feature to function correctly. | */ 'payment_notification' => env('CASHIER_PAYMENT_NOTIFICATION'), /* |-------------------------------------------------------------------------- | Invoice Settings |-------------------------------------------------------------------------- | | The following options determine how Cashier invoices are converted from | HTML into PDFs. You're free to change the options based on the needs | of your application or your preferences regarding invoice styling. | */ 'invoices' => [ 'renderer' => env('CASHIER_INVOICE_RENDERER', DompdfInvoiceRenderer::class), 'options' => [ // Supported: 'letter', 'legal', 'A4' 'paper' => env('CASHIER_PAPER', 'letter'), ], ], /* |-------------------------------------------------------------------------- | Stripe Logger |-------------------------------------------------------------------------- | | This setting defines which logging channel will be used by the Stripe | library to write log messages. You are free to specify any of your | logging channels listed inside the "logging" configuration file. | */ 'logger' => env('CASHIER_LOGGER'), ];