feat: Add LMI API integration for fetching sales data

- 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.
This commit is contained in:
Rico van Zelst
2024-04-18 19:44:09 +02:00
parent 984690b758
commit 267a2e4b67
4 changed files with 64 additions and 60 deletions

View File

@@ -9,4 +9,8 @@ return [
'scheme' => 'https',
],
'lmi' => [
'api_key' => env('LMI_API_KEY'),
],
];