feat(Handle Expired members script)

This commit is contained in:
2026-01-18 14:35:41 +01:00
parent 80d96b7004
commit 6a78b7fb68
9 changed files with 158 additions and 18 deletions

View File

@@ -9,6 +9,7 @@ use Illuminate\Support\Facades\Http;
class DolibarrService
{
protected string $baseUrl;
protected string $htaccessUrl;
protected string $username;
protected string $password;
protected string $apiKey;
@@ -16,6 +17,7 @@ class DolibarrService
public function __construct()
{
$this->baseUrl = config('services.dolibarr.base_url');
$this->htaccessUrl = config('services.dolibarr.htaccess_url');
$this->username = config('services.dolibarr.username');
$this->password = config('services.dolibarr.password');
$this->apiKey = config('services.dolibarr.api_key');