コード例 #1
0
 public function imported()
 {
     return view('importer.products.success', ['data' => ImportedProduct::all()]);
 }
コード例 #2
0
ファイル: OsOrder.php プロジェクト: samuelcar/os2woo
 private function getWooProductId($id)
 {
     $customer = ImportedProduct::where('os_id', '=', $id)->get()->first();
     if (isset($customer['wc_id'])) {
         return $customer['wc_id'];
     }
     throw new Exception("the product has not been imported yet.");
 }