diff --git a/database/seeders/CompaniesTableSeeder.php b/database/seeders/CompaniesTableSeeder.php index 5199e829..312720ec 100644 --- a/database/seeders/CompaniesTableSeeder.php +++ b/database/seeders/CompaniesTableSeeder.php @@ -211,10 +211,11 @@ class CompaniesTableSeeder extends Seeder $object = new AddressObject($street_one, $street_two, $district->country_id, $district->state_id, $district->id, $address->post_code, 'Business Address'); $this->createsAddress->execute($companyModule, $object); - if($address->contact){ + $contact = preg_replace("/[^0-9.]/", "", $address->contact); + if($contact){ $i++; if($i === 1) { - $contactObject = new ContactObject('', preg_replace("/[^0-9.]/", "", $address->contact), $company->email, '',); + $contactObject = new ContactObject('', $contact, $company->email, '',); $this->createContactProcessor->execute($contactObject, $newCompany); } } diff --git a/resources/assets/vue/components/orders/sections/OrderSectionComponent.vue b/resources/assets/vue/components/orders/sections/OrderSectionComponent.vue index 0ab7929b..18df2ac5 100644 --- a/resources/assets/vue/components/orders/sections/OrderSectionComponent.vue +++ b/resources/assets/vue/components/orders/sections/OrderSectionComponent.vue @@ -118,14 +118,14 @@
-
Identification Verification
-
+
Identification Verification
+
-
Our warehouse will accept your parcel but your goods will be on hold for delivery until you have successfully verified your identity!
-
Our warehouse will accept your parcel but your goods will be on hold for delivery until your identification is approved!
+
Our warehouse will accept your parcel but your goods will be on hold for delivery until you have successfully verified your identity!
+
Our warehouse will accept your parcel but your goods will be on hold for delivery until your identification is approved!
@@ -137,7 +137,7 @@
- +