contact_repo = $contact_repo; } /** * Gets the class name. * * @return string The class name. */ public function getClassName() { return Vendor::class; } /** * Saves the vendor and its contacts * * @param array $data The data * @param \App\Models\vendor $vendor The vendor * * @return vendor|\App\Models\vendor|null vendor Object */ public function save(array $data, Vendor $vendor) : ?Vendor { $vendor->fill($data); $vendor->save(); if ($vendor->id_number == "" || !$vendor->id_number) { $vendor->id_number = $this->getNextVendorNumber($vendor); } //todo write tests for this and make sure that custom vendor numbers also works as expected from here $vendor->save(); if (isset($data['contacts'])) { $contacts = $this->contact_repo->save($data['contacts'], $vendor); } if (empty($data['name'])) { $data['name'] = $vendor->present()->name(); } return $vendor; } /** * Store vendors in bulk. * * @param array $vendor * @return vendor|null */ public function create($vendor): ?Vendor { return $this->save( $vendor, VendorFactory::create(auth()->user()->company()->id, auth()->user()->id) ); } }