/**
  * Display a listing of the Kardex.
  * GET|HEAD /kardexes
  *
  * @return Response
  */
 public function index()
 {
     $kardexes = $this->kardexRepository->all();
     return $this->sendResponse($kardexes->toArray(), "Kardexes retrieved successfully");
 }