Пример #1
0
 /**
  * Show the form for creating a new resource.
  *
  * @return Response
  */
 public function create()
 {
     $cats = Categorie::all();
     $proprietes = Propriete::all();
     return view('produit.create', ['cats' => $cats, 'proprietes' => $proprietes]);
 }