create fms service

This commit is contained in:
2024-12-24 11:55:20 +03:30
parent 8155cd9796
commit dd616551af
8 changed files with 620 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
<?php
return [
'Vehicle_Activity' => [
'url' => env('FMS_VEHICLE_ACTIVITY_URL'),
'password' => env('FMS_VEHICLE_ACTIVITY_PASSWORD'),
'username' => env('FMS_VEHICLE_ACTIVITY_USERNAME'),
],
];

View File

@@ -105,6 +105,12 @@ return [
'path' => storage_path('logs/cmms/machines_info_list_service.log'),
'level' => 'info',
],
'fms_vehicle_activity' => [
'driver' => 'single',
'path' => storage_path('logs/fms/vehicle_activity_service.log'),
'level' => 'info',
],
],
];