Exemplo n.º 1
0
 public function getCreate()
 {
     $branches = new Branch();
     $branchAll = $branches->getBranchesDropDown();
     $products = new Product();
     $productAll = $products->getProductsDropDownForeign();
     $imports = new Import();
     $importAll = $imports->getImportsDropDown();
     return view('Imports.add', compact('branchAll'))->with('productAll', $productAll)->with('importAll', $importAll);
 }