public function getAllTypeProduit()
 {
     $tprod = new TypeProduit();
     $results = $tprod->getAll();
     return Response()->json($results->toArray(), 200);
 }
示例#2
0
 public function getAll()
 {
     return TypeProduit::all();
 }