Ejemplo n.º 1
0
 /**
  * Display a listing of the ShareUser.
  * GET|HEAD /shareUsers
  *
  * @return Response
  */
 public function index()
 {
     $shareUsers = $this->shareUserRepository->all();
     return $this->sendResponse($shareUsers->toArray(), "ShareUsers retrieved successfully");
 }