add phone number, notes, and contact person to carrier

This commit is contained in:
Yisroel Baum 2025-11-10 11:14:32 +02:00
parent f37868f0d0
commit a739479e22
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
9 changed files with 88 additions and 6 deletions

View file

@ -17,7 +17,10 @@ class CreateCarrier
$carrier = new Carrier(
null,
$this->dto->email,
$this->dto->companyName
$this->dto->companyName,
$this->dto->contactPerson,
$this->dto->phoneNumber,
$this->dto->notes,
);
return $this->carrierRepo->save($carrier);