feat-wip(ISPConfig & Dolibarr connections)
This commit is contained in:
13
routes/dev-routes.php
Normal file
13
routes/dev-routes.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::get('/call-dolibarr', function () {
|
||||
$call = new App\Services\DolibarrService;
|
||||
$members = $call->getAllMembers();
|
||||
// find specific
|
||||
$userData = collect($members)->firstWhere('id', 139);
|
||||
|
||||
dd($userData);
|
||||
|
||||
})->name('call-dolibarr');
|
||||
Reference in New Issue
Block a user