diff --git a/app/Classes/Modules/Delivery/ControllersLogic/CreateDeliveryCustomerLogic.php b/app/Classes/Modules/Delivery/ControllersLogic/CreateDeliveryCustomerLogic.php index 521d88c5..bd6cc93b 100644 --- a/app/Classes/Modules/Delivery/ControllersLogic/CreateDeliveryCustomerLogic.php +++ b/app/Classes/Modules/Delivery/ControllersLogic/CreateDeliveryCustomerLogic.php @@ -32,6 +32,7 @@ use Illuminate\Http\JsonResponse; use Illuminate\Http\Request; use Illuminate\Support\Facades\App; use App\Classes\Modules\Companies\Services\FetchesCompanyModule; +use Illuminate\Support\Facades\Log; class CreateDeliveryCustomerLogic extends AbstractControllerLogic { @@ -133,7 +134,7 @@ class CreateDeliveryCustomerLogic extends AbstractControllerLogic $companyModule = $this->createCompanyModuleProcessor->execute($company, BusinessType::ONLINE_SELLER); $inviter = $this->fetchesCompanyModule->execute(['reference'=>'LMD']); - +Log::info($inviter); $connectionObject = new CompanyConnectionObject($companyModule, $inviter, mt_rand(1000, 9999).(new GeneratesInitials())->name($company->name)->length(3)->generate(), 'LMD'); $connection = $this->createsCompanyConnection->execute($connectionObject);