示例#1
0
 private function getWooCustomerId()
 {
     $customer = ImportedCustomer::where('os_id', '=', $this->customers_id)->get()->first();
     if (isset($customer['wc_id'])) {
         return $customer['wc_id'];
     }
     throw new Exception("the customer has not been imported yet.");
 }
示例#2
0
 public function imported()
 {
     return view('importer.customers.success', ['data' => ImportedCustomer::all()]);
 }