mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
- Integrate LMI API to fetch current sales data using the provided API key. - Update SaleController to use Http facade for making API requests. - Modify services configuration to include LMI API key.
17 lines
292 B
PHP
17 lines
292 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'mailgun' => [
|
|
'domain' => env('MAILGUN_DOMAIN'),
|
|
'secret' => env('MAILGUN_SECRET'),
|
|
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
|
|
'scheme' => 'https',
|
|
],
|
|
|
|
'lmi' => [
|
|
'api_key' => env('LMI_API_KEY'),
|
|
],
|
|
|
|
];
|