/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $response = $this->statementService->getList();
     return response()->json($response);
 }